CodeIgniter -> Get current URL relative to base url

后端 未结 10 1177
情话喂你
情话喂你 2020-12-29 05:08

Tried URI::uri_string() but can\'t get it to work with the base_url.

URL: http://localhost/dropbox/derrek/shopredux/ahahaha/hihihi
Returns: dr

10条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-29 05:40

    Running Latest Code Igniter 3.10

    $this->load->helper('uri'); // or you can autoload it in config
    
    print base_url($this->uri->uri_string());
    

提交回复
热议问题