123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- namespace daswork\lib;
- use daswork\lib\Config;
- class Route{
- public $model;
- public $ctrl;
- public $action;
- public function __construct()
- {
-
-
-
- * 1.隐藏index.php文件,引入.htaccess文件,与入口文件同级
- * 2.获取URL 参数部分,即get传值
- * 3.返回对应模块,控制器和方法
- */
- $route = Config::get('route');
- if (isset($_SERVER['PATH_INFO'])&& $_SERVER['PATH_INFO'] != '/'){
- $path = $_SERVER['PATH_INFO'];
-
-
- $pathArr = explode('/',trim($path,'/'));
- if (isset($pathArr[0])) {
- $this->model = $pathArr[0];
- unset($pathArr[0]);
- }
- if (isset($pathArr[1])){
- $this->ctrl = ucfirst(camelize($pathArr[1]));
- unset($pathArr[1]);
- } else {
- $this->ctrl = $route['c'];
- }
- if (isset($pathArr[2])){
- $this->action = camelize($pathArr[2]);
- unset($pathArr[2]);
- }else{
- $this->action = $route['a'];
- }
-
- $count = count($pathArr) + 2;
- $i = 2;
- while ($i < $count){
- if (isset($pathArr[$i+1])){
- $_GET[$pathArr[$i]] = $pathArr[$i+1];
- }
- $i = $i + 2;
- };
- }else{
- $this->model = $route['m'];
- $this->ctrl = $route['c'];
- $this->action = $route['a'];
- }
- $GLOBALS['model'] = $this->model;
- $GLOBALS['ctrl'] = $this->ctrl;
- $GLOBALS['action'] = $this->action;
- }
- }
|