我不理解CodeIgniter上的uri->segment
。如以下示例,我有一个表,其中包含字段:
| Id_comment | id_alat | user |
|:-----------|------------:|:------------:|
| 1 | 45 | irwan |
如果我调用$id = $this->uri->segment(4);
,它返回user
字段。
如何返回id_comment
字段?
4条答案
按热度按时间2wnc66cl1#
如果你的URL是
instrumentdev/instrument/instrument/detail/CT-BSC-001
然后你可以通过以下方法得到数据
yr9zkbsy2#
例如,您的URL看起来很像:http://localhost/yourProject/users/edit/1/john/33
所以你有五个参数:
在
route.php
文件中,您应该创建以下路由:最后,在控制器中,您可以通过
uri->segment()
或..从url访问参数。hkmswyz63#
//控制
//viewing
s6fujrry4#
自CodeIgniter 4以来,这略有变化: