CodeIgniter Forums
How change uri_to_assoc like this... - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: How change uri_to_assoc like this... (/showthread.php?tid=46102)



How change uri_to_assoc like this... - El Forum - 10-18-2011

[eluser]Unknown[/eluser]
by default

Code:
$this->uri->uri_to_assoc(3)
index.php/user/search/name/joe/location/UK/gender/male

[array]
(
    'name' => 'joe'
    'location' => 'UK'
    'gender' => 'male'
)

i want like this:


Code:
$this->uri->new_uri_to_assoc(3)
index.php/user/search/name:joe/location:UK/gender:male

[array]
(
    'name' => 'joe'
    'location' => 'UK'
    'gender' => 'male'
)