CodeIgniter URI不起作用

时间:2010-11-19 01:20:34

标签: php codeigniter

我使用此代码:

$url =  $this->uri->segment_array()// OR $this->uri->uri_to_assoc(3);
print_r($url);

但它总是返回空数组? 请求的URL如: http://localhost/my_proj/index.php/thumb/index/id/87

1 个答案:

答案 0 :(得分:1)

$url =  $this->uri->segment_array();
print_r($url);

此代码使用codeigniter 1.7.2进行测试, 你检查过你的路由器配置文件了吗?