用户
 找回密码
 入住 CI 中国社区
搜索
查看: 4290|回复: 3
收起左侧

[版本 2.x] 关于$this->uri->segment()的疑问

[复制链接]
发表于 2011-10-8 23:41:07 | 显示全部楼层 |阅读模式
PHP复制代码
        function segment($n, $no_result = FALSE)
        {
                return ( ! isset($this->segments[$n])) ? $no_result : $this->segments[$n];
        }
复制代码

在执行$this->uri->segment(1)的时候会获取地址栏对应的分段信息,我在看源码的时候没有看到$segments在什么时候获取的值,高手指点下。
发表于 2011-10-9 08:42:15 | 显示全部楼层
仔细研读CI的uri类
 楼主| 发表于 2011-10-9 09:23:25 | 显示全部楼层
jeongee 发表于 2011-10-9 08:42
仔细研读CI的uri类

就是看到这里迷糊了,版主能不能讲讲
发表于 2011-10-9 10:33:45 | 显示全部楼层
longjianghu 发表于 2011-10-9 09:23
就是看到这里迷糊了,版主能不能讲讲

通篇阅读那个类呀
比如说函数_fetch_uri_string()

本版积分规则