用户
 找回密码
 入住 CI 中国社区
搜索
查看: 17256|回复: 32
收起左侧

[核心代码 Core] 让Codeigniter控制器支持多级目录【支持2.1.2】

  [复制链接]
发表于 2012-6-21 08:55:21 | 显示全部楼层 |阅读模式
本帖最后由 longjianghu 于 2013-7-3 15:07 编辑

CodeIgniter(后面简称CI) 是一个小巧但功能强大的 PHP 框架,这也是我选择它的原因。在实际的项目开发过程中,有时需要使用多级目录的情况,这时它的问题就出来了。

CI默认的控制器只支持一级目录。这时CI灵活的扩展功能可以大展身手了。下面我扩展了一下让Codeigniter支持多级目录。代码如下:

PHP复制代码
 
< ?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都测试通过!

评分

参与人数 2威望 +10 收起 理由
trynews + 5 这个很好,多级目录需要滴
Hex + 5 赞一个!

查看全部评分

 楼主| 发表于 2016-11-13 14:21:07 | 显示全部楼层
zailushang 发表于 2015-11-27 16:54
**** 作者被禁止或删除 内容自动屏蔽 ****

index是你自己的路由配置和这个多级目录无关
发表于 2015-11-27 16:54:20 | 显示全部楼层
楼主你好,如果使用My_router   路由就会不默认找index 文件了 ,这个怎么解决???谢谢
发表于 2015-11-30 12:58:49 | 显示全部楼层
楼主,增加my_router 后,所有的输出都多了个换行符,这是为什么  怎么解决呢
发表于 2012-6-26 22:33:21 | 显示全部楼层
这个必须要顶一下
 楼主| 发表于 2012-6-27 13:28:00 | 显示全部楼层
jason_wang_666 发表于 2012-6-26 22:33
这个必须要顶一下

谢谢支持
发表于 2012-7-13 10:19:39 | 显示全部楼层
必须支持,帮了大忙
 楼主| 发表于 2012-7-17 13:49:10 | 显示全部楼层
远之影 发表于 2012-7-13 10:19
必须支持,帮了大忙

门前冷落鞍马稀,感谢支持。
发表于 2012-7-17 15:58:09 | 显示全部楼层
支持
发表于 2012-7-28 11:27:02 | 显示全部楼层
求。2.1.2 的
发表于 2012-7-28 16:37:39 | 显示全部楼层
楼主厉害。
 楼主| 发表于 2012-7-31 09:11:32 | 显示全部楼层
ulpyuxa 发表于 2012-7-28 16:37
楼主厉害。

谢谢支持
发表于 2012-8-1 10:44:16 | 显示全部楼层
很好 很强大

本版积分规则