这是我的字符串:
$text = 'this@@@ is@@@@ my@@@@@ string@@@@@@@';
我有两个问题
最后,我希望得到这样的结果:
首先:this@ is@@ my@@@ string@@@@@
最后:this#@# is#@#@# my#@#@#@# string#@#@#@#@#@#
答案 0 :(得分:0)
echo str_replace('@', '#@#', implode(' ', explode('@@ ', $text)));
故障:
explode
会将字符串拆分为@@
,并返回一个数组implode
将使用
(空格)str_replace
会将@
替换为#@#