码迷,mamicode.com
首页 > 其他好文 > 详细

空操作的城市切换功能

时间:2020-05-08 09:39:51      阅读:50      评论:0      收藏:0      [点我收藏+]

标签:contain   系统   this   cti   相关   ati   UNC   control   城市切换   

<?php
namespace app\index\controller;

class City 
{
    public function _empty($name)
    {
        //把所有城市的操作解析到city方法
        return $this->showCity($name);
    }
    
    //注意 showCity方法 本身是 protected 方法
    protected function showCity($name)
    {
        //和$name这个城市相关的处理
         return ‘当前城市‘ . $name;
    }
}

接下来,我们就可以在浏览器里面输入

http://serverName/index/city/beijing/
http://serverName/index/city/shanghai/
http://serverName/index/city/shenzhen/

由于City并没有定义beijing、shanghai或者shenzhen操作方法,因此系统会定位到空操作方法 _empty中去解析,_empty方法的参数就是当前URL里面的操作名,因此会看到依次输出的结果是:

当前城市:beijing
当前城市:shanghai
当前城市:shenzhen

空操作的城市切换功能

标签:contain   系统   this   cti   相关   ati   UNC   control   城市切换   

原文地址:https://www.cnblogs.com/mmore123/p/12848324.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!