代码点火器:我如何使用定制的路由器

时间:2011-02-28 13:34:35

标签: php codeigniter

我有以下代码:

class MY_Router extends CI_Router {  

     function __construct() {
        parent::__construct();
   log_message('debug', "My Child Router Class is here");
} }  

我已经运行了网页并看到了日志,但没有找到任何日志消息。

我的目的是,默认路由器的instaed,我想使用自定义路由器。

有人可以指导我做错的地方和地点。以及如何纠正它。

提前致谢

1 个答案:

答案 0 :(得分:1)

如果您只是测试以查看该类是否构造正确,则可能更容易调用错误消息。如果显示错误消息,那么您可以继续。

show_error("My child router class is up and running.");

另外,请确保您的文件名为“MY_Router.php”,并放在 / application / core 目录中。

可以在http://codeigniter.com/user_guide/general/core_classes.html

找到与扩展核心课程相关的用户指南条目