我正在尝试用htmlspecialchars_decode
and解码两个特殊标签之间的字符串preg_replace
,例如我的原始字符串是这样的:
other strings...[link]<a href="http://example.com" target="_blank">example</a>[/link]other strings...
我需要将所有内容转换[link][/link]
为 html 原始代码。测试了这个:
$str = preg_replace("/[link](.*)[\/link]/eisU", "htmlspecialchars_decode('$1')", $str);
没用!我也搜索了谷歌,但没用!