我想替换'<'和'>'签到字符串。 e.g
$str = 'if x<y and y>z'; echo str_replace( '<', 'something', $str ) . "\n";
这给出了以下结果
if xsomethingy and y>z
我的问题是如何更换&#39;&gt;&#39;发短信&#39;
答案 0 :(得分:2)
str_replace( array('<', '>'), 'something', $str )
是可能的,请参阅manual
答案 1 :(得分:0)
preg_replace(/[<>]/g, 'something', $str)
你需要学习一些PHP yah
http://php.net/manual/en/function.preg-replace.php
答案 2 :(得分:0)
结帐preg_replace()
文档在这里http://php.net/manual/en/function.preg-replace.php
例子就是
preg_replace('/[<>]/', 'something', $str);