对于我的 Rest WebService,我需要一些变化来将城市或地区或其他东西放入其中。所以我的 URI 应该是这样的:
/rest/rating/locations?city=London
现在我使用以下函数来获取最后一个 URI 段:
$segcount = $this->uri->total_segments();
$lastseg = $this->uri->segment($segcount);
问题就在这里,问号中的所有内容都被删除了!被保存的变量只是:位置
我已经尝试在 config.php 中配置以下内容:
$config['uri_protocol'] = 'PATH_INFO';
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-?';
$config['enable_query_strings'] = TRUE;
有没有其他可能用问号保存整个片段?