我想从域中获取ID值而不传递?而不是/in(查询字符串)解决方案 < a href ="http://www.test.com/update_record_row/6356/">ID</a>公共功能update_record_row($ id){echo"Id is:".$ id;} 或使用 URI段 //如果是URL -http://www.test.com/update_record_row/id/6356/$ id = $ this-> uri-> segment(3);//如果是网址-http://www.test.com/update_record_row/6356/$ id = $ this-> uri-> segment(2); I have a domain and id is coming in that domain like thishttp://www.test.com/update_record_row/id/6356/I want id value from the domain without passing ? instead of / in (query string) 解决方案 <a href="http://www.test.com/update_record_row/6356/"> ID </a>public function update_record_row($id){ echo "Id is :".$id;}orUse URI segment // if URL -http://www.test.com/update_record_row/id/6356/$id = $this->uri->segment(3);// if URL -http://www.test.com/update_record_row/6356/$id = $this->uri->segment(2); 这篇关于从URL Codeigniter获得价值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!