细分如何在Yii Framework中运作?
实施例...
http://myblog.com/index.php/controller/method/id/5
如何获得5?
在Yii中没有params是可能的,比如Codeigniter $product_id = $this->uri->segment(4);
答案 0 :(得分:1)
你可以通过
获得它$_GET['id'];
就是这样......
controller/method/param1/value1/param2/value2.... so far so forth
答案 1 :(得分:1)
@ itachi的回答是正确的。
您可以使用:$_GET['id']
Yii使用CUrlManager类使用不同类型的网址管理。此类的parsePathInfo()函数:
将路径信息解析为网址细分,将保存解析为 $ _ GET 和 $ _ REQUEST 。