i want to replace '<' and '>' sign in string. e.g
$str = 'if x<y and y>z'; echo str_replace( '<', 'something', $str ) . "\n";
this give the following result
if xsomethingy and y>z
my question is how can i replace '>' to text 'something'
|
i want to replace '<' and '>' sign in string. e.g $str = 'if x<y and y>z'; echo str_replace( '<', 'something', $str ) . "\n"; this give the following result if xsomethingy and y>z my question is how can i replace '>' to text 'something'
| |||||
feedback
|
is a possibility, see manual | |||||||
feedback
|
|
You need to study some PHP yah | |||
|
feedback
|
|
check out Documentation is here http://php.net/manual/en/function.preg-replace.php example would be
| |||
|
feedback
|
|
I think you are looking for... http://www.php.net/manual/en/function.html-entity-decode.php | |||
|
feedback
|