我正在编写一个自定义 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 文件,这让我很困惑。
谢谢。