简体   繁体   中英

How to get current url with its get request in CodeIgniter?

This is my current url:

http://myhost/main?my_id=1,3

How can I get this url in CodeIgniter, and is it included with 'my_id'?

NOTE:

I mean when echo $url , it shows like this: http://myhost/main?my_id=1,3

simple get like this

echo $this->input->get('my_id');

Load the URL helper To get current url

$currentURL = current_url(); //http://myhost/main

$params   = $_SERVER['QUERY_STRING']; //my_id=1,3

$fullURL = $currentURL . '?' . $params; 

echo $fullURL;   //http://myhost/main?my_id=1,3

Note : make sure that query string is not empty and then concatenate .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM