没想到啊

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
  6 随笔 :: 379 文章 :: 97 评论 :: 24万 阅读
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

http://codeigniter.org.cn/forums/thread-13479-1-1.html

 

复制代码
 
< ?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
 
/**
 * MY_Router Class
 *
 * Parses URIs and determines routing
 *
 * @author      Longjianghu QQ:215241062
 * @copyright   Copyright © 2012-2013 www.spenote.com. All rights reserved.
 * @created     2012-06-21
 * @updated     2012-06-21
 * @link        http://www.spenote.com/php/codeigniter_route.html
 */
 
class MY_Router extends CI_Router
{
        // --------------------------------------------------------------------
 
        /**
         *  Set the directory name
         *
         * @access      public
         * @param       string
         * @return      void
         */
        function set_directory($dir)
        {
                $this->directory = $dir.'/';
        }
 
        /**
         * Validates the supplied segments.  Attempts to determine the path to
         * the controller.
         *
         * @access      private
         * @param       array
         * @return      array
         */
 
        function _validate_request($segments)
        {
                if (count($segments) == 0)
                {
                        return $segments;
                }
 
                // Does the requested controller exist in the root folder?
                if (file_exists(APPPATH.'controllers/'.$segments[0].'.php'))
                {
                        return $segments;
                }
 
                // Is the controller in a sub-folder?
                if (is_dir(APPPATH.'controllers/'.$segments[0]))
                {
                        $temp = array('dir' => '', 'number' => 0, 'path' => '');
                        $temp['number'] = count($segments) - 1;
 
                        for($i = 0; $i < = $temp['number']; $i++)
                        {
                                $temp['path'] .= $segments[$i].'/';
 
                                if(is_dir(APPPATH.'controllers/'.$temp['path']))
                                {
                                        $temp['dir'][] = str_replace(array('/', '.'), '', $segments[$i]);
                                }
                        }
 
                        $this->set_directory(implode('/', $temp['dir']));
                        $segments = array_diff($segments, $temp['dir']);
                        $segments = array_values($segments);
                        unset($temp);
 
                        if (count($segments) > 0)
                        {
                                // Does the requested controller exist in the sub-folder?
                                if ( ! file_exists(APPPATH.'controllers/'.$this->fetch_directory().$segments[0].'.php'))
                                {
                                        if ( ! empty($this->routes['404_override']))
                                        {
                                                $x = explode('/', $this->routes['404_override']);
 
                                                $this->set_directory('');
                                                $this->set_class($x[0]);
                                                $this->set_method(isset($x[1]) ? $x[1] : 'index');
 
                                                return $x;
                                        }
                                        else
                                        {
                                                show_404($this->fetch_directory().$segments[0]);
                                        }
                                }
                        }
                        else
                        {
                                // Is the method being specified in the route?
                                if (strpos($this->default_controller, '/') !== FALSE)
                                {
                                        $x = explode('/', $this->default_controller);
 
                                        $this->set_class($x[0]);
                                        $this->set_method($x[1]);
                                }
                                else
                                {
                                        $this->set_class($this->default_controller);
                                        $this->set_method('index');
                                }
 
                                // Does the default controller exist in the sub-folder?
                                if ( ! file_exists(APPPATH.'controllers/'.$this->fetch_directory().$this->default_controller.'.php'))
                                {
                                        $this->directory = '';
                                        return array();
                                }
 
                        }
 
                        return $segments;
                }
 
 
                // If we've gotten this far it means that the URI does not correlate to a valid
                // controller class.  We will now see if there is an override
                if ( ! empty($this->routes['404_override']))
                {
                        $x = explode('/', $this->routes['404_override']);
 
                        $this->set_class($x[0]);
                        $this->set_method(isset($x[1]) ? $x[1] : 'index');
 
                        return $x;
                }
 
 
                // Nothing else to do at this point but show a 404
                show_404($segments[0]);
        }
}
// END MY_Router Class
 
复制代码
使用方法:把上面的代码另存为MY_Router.php,放在你应用目录的core目录下。假设你的应用放在application目录,哪么你把MY_Router.php文件放在application/core目录下即可:
原生的CI最多只支持一级目录,地址如下:controllers/directory/appname.php,现在你可以写成controllers/directory/directory/directory/appname.php,如果你不觉得累写多少都没关系 (^0^)。
现目前在Codeigniter 2.1.0、Codeigniter 2.1.1、Codeigniter 2.1.2都测试通过!
posted on   没想到啊  阅读(406)  评论(0编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· [AI/GPT/综述] AI Agent的设计模式综述
点击右上角即可分享
微信分享提示