6

我正在编写一个自定义 post_controller 挂钩。众所周知,codeigniter uri 结构是这样的:

example.com/class/function/id/

和我的代码:

function hook_acl()
{
    global $RTR;
    global $CI;

    $controller = $RTR->class; // the class part in uri
    $method = $RTR->method; // the function part in uri
    $id = ? // how to parse this?

    // other codes omitted for brevity
}

我浏览了核心 Router.php 文件,这让我很困惑。

谢谢。

4

2 回答 2

8

使用 CodeIgniter URI 核心类

通常在 CodeIgniter Hooks中,我们需要加载/实例化 URI 核心类来访问方法。

  • 对于post_controller_constructor, post_controller, ... 钩子,我们可以获取 CodeIgniter 超级对象并使用uri类:
# Get the CI instance
$CI =& get_instance();

# Get the third segment
$CI->uri->segment(3);
  • 但是对于pre_controllerhook,我们无法访问 CodeIgniter超级对象,所以我们必须手动加载 URI 核心类,如下所示:
# Load the URI core class
$uri =& load_class('URI', 'core');

# Get the third segment
$id = $uri->segment(3); // returns the id

使用纯 PHP

在这种方法中,您可以使用$_SERVER数组来获取 URI 段:

$segments = explode('/', trim($_SERVER['REQUEST_URI'], '/'));

$controller = $segments[1];
$method     = $segments[2];
$id         = $segments[3];
于 2014-03-10T13:06:42.717 回答
2

您可以使用router该类:

$this->router->fetch_class();
$this->router->fetch_method();

URI类:

$this->uri->segment(1); // the class
$this->uri->segment(2); // the function
$this->uri->segment(3); // the ID
于 2014-03-10T12:55:16.237 回答