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'

link|improve this question

60% accept rate
2  
... The same way? – Ignacio Vazquez-Abrams Nov 26 '10 at 6:42
feedback

4 Answers

up vote 2 down vote accepted
str_replace( array('<', '>'), 'something', $str )

is a possibility, see manual

link|improve this answer
how should i replace '>' to other text not specifically 'something' – hunter Nov 26 '10 at 6:49
and '<' should be replace with 'something' – hunter Nov 26 '10 at 6:49
thanks RC i have done this by using str_replace(array('<','>'),array('&lt','&gt', $str) and this work for me – hunter Nov 26 '10 at 6:58
feedback

preg_replace(/[<>]/g, 'something', $str)

You need to study some PHP yah
http://php.net/manual/en/function.preg-replace.php

link|improve this answer
how should i convert '<' to &lt and '>' to &gt in the same example – hunter Nov 26 '10 at 6:52
feedback

check out preg_replace()

Documentation is here http://php.net/manual/en/function.preg-replace.php

example would be preg_replace('/[<>]/', 'something', $str);

link|improve this answer
feedback

I think you are looking for... http://www.php.net/manual/en/function.html-entity-decode.php

link|improve this answer
This is the correct answer. – timdream Nov 26 '10 at 8:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.