正则表达式替换两个标签之间的所有'

时间:2010-12-14 16:54:42

标签: php regex tags replace

如何在PHP中用正则表达式替换&apos;'标记之间的所有<?php {/ 1}}?

我的字符串:?>

1 个答案:

答案 0 :(得分:1)

use str_replace

$test =" &apos;hello&apos;;"

str_replace("&apos","'",$test )