I'm trying to replace a URL in CodeIgniter that has certain parameters. Not that CI should matter at this point as I have the best part of it working.
Lets say my URL is :
?device=field1-field2_field3+field4
By echoing out $devicelink2 that should show:
field1 field2.field3*field4
Currently it works with everything but replacing the +. For some reason it replaces + with a space.
However I can't get that working using the below code. Any ideas?
$device = $this->input->get('device');
$devicelink = str_replace("-"," ",$device);
$devicelink1 = str_replace("_",".",$devicelink);
$devicelink2 = str_replace("+","*",$devicelink1);

echo $this->input->get('device');yield?field1-field2_field3+field4? Have you then triedecho str_replace(array('-', '_', '+'), array(' ', '.', '*'), $this->input->get('device'));? – Thomas Oct 7 '12 at 22:40