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

框架原理之路由(三)

时间:2020-03-11 19:24:34      阅读:48      评论:0      收藏:0      [点我收藏+]

标签:links   ==   iss   ima   htaccess   code   ali   cond   lin   

core目录下,新建一个名为lib的子目录,然后把我们前面写个Route.php这个文件移动到这个目录下。

技术图片

因为route类文件路径修改,所以在实例化的时候:

new \core\lib\route();

然后我们来完善Route.php:

<?php
namespace core\lib;

class Route
{
    public $controller; // 控制器
    public $action; // 方法(动作)

    public function __construct()
    {
        // xxx.com/index.php/index/index
        // xxx.com/index.php/index

        /*
         * 1.隐藏index.php
         * 2.获取URL 参数部分
         * 3.返回对应控制器和方法
         * */
        if(isset($_SERVER[‘REQUEST_URI‘]) && $_SERVER[‘REQUEST_URI‘] != ‘/‘){
            // 处理成这种格式:index/index
            $path = $_SERVER[‘REQUEST_URI‘];
            $pathArr = explode(‘/‘,trim($path,‘/‘));

            if(isset($pathArr[0])){
                $this->controller = $pathArr[0];
            }
            unset($pathArr[0]);

            if(isset($pathArr[1])){
                $this->action = $pathArr[1];
                unset($pathArr[1]);
            }else{
                $this->action = ‘index‘;
            }

            // url多余部分(参数部分)转换成 GET
            // id/1/str/2
            $count = count($pathArr) + 2;
            $i = 2;
            while($i < $count){
                if(isset($pathArr[$i + 1])){
                    $_GET[$pathArr[$i]] == $pathArr[$i + 1];
                }
                $i = $i + 2;
            }

            p($_GET);  // 打印GET
        }else{
            $this->controller = ‘index‘;  // 默认控制器
            $this->action = ‘index‘;  // 默认方法
        }

    }
}

Apache配置文件.htaccess

Options +FollowSymLinks
IndexIgnore /
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php

 

框架原理之路由(三)

标签:links   ==   iss   ima   htaccess   code   ali   cond   lin   

原文地址:https://www.cnblogs.com/xiaobingch/p/12464587.html

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