本文介绍了CodeIgniter URI不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用以下代码:

$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

but it always return empty array ?the requested URL like :http://localhost/my_proj/index.php/thumb/index/id/87

推荐答案

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

此代码在codeigniter 1.7.2上进行过测试,
是否检查了路由器配置文件?

this code works tested with codeigniter 1.7.2,did u check your router configuration file ?

这篇关于CodeIgniter URI不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 18:33