http://www.example.com/ci_admin_jaspud/index.php/admin/add_member/id/7/created_sort/asc獲取查詢字符串的值
我怎樣才能獲得多個查詢字符串的使用笨上述網址的價值?
http://www.example.com/ci_admin_jaspud/index.php/admin/add_member/id/7/created_sort/asc獲取查詢字符串的值
我怎樣才能獲得多個查詢字符串的使用笨上述網址的價值?
URI類會自動加載,你可以使用段()方法來檢索數據
$this->uri->segment(4)
拿到7
更多信息:http://ellislab.com/codeigniter/user-guide/libraries/uri.html
嘗試:
$this->load->library('uri');
echo $this->uri->segment(4);
URI類提供的功能可以幫助您從URI字符串中檢索信息。
其實URI沒有幫手,但核心類,有一個網址助手,但不需要這個。 – jtheman
是的,改變了錯誤,它的庫變成了幫手。無論如何,謝謝... – hsuk
非常感謝你拯救了我的好友.... –