1

我正在寻找一个可以通过 URI 告诉我当前对象和方法的函数。通常,我会使用$this->uri->uri_string(),但是,我不想传递任何“动态”段。例如, 的 URI'products/shoes/123'将是'products/view_product'

我希望能够做到这一点,这样我就可以创建一个包含页面标题的配置文件......因为我使用模型来输出我的页面标题。它是从MY_Controller.php构造中调用的。例如:$this->template->overall_header($title = "View Product")...

但在构造中,它将是:

$this->template->overall_header($title = $this->config->item($object_method_string));

有人有任何解决方案吗?谢谢你的时间。

4

2 回答 2

0

对于当前方法 $method= $this->router->fetch_method();

我希望你在谈论这个

于 2013-06-05T05:30:14.370 回答
0

要扩展Nishant 的答案,您可以从路由器类访问属性。

所以对于当前对象;

$this->router->class

对于当前方法;

$this->router->method
于 2013-06-05T06:16:37.190 回答