用str_replace和preg_replace替换时出错

时间:2014-11-02 18:52:17

标签: php

我有这个字符串:

$x = "&#hello&";

我想把它改成这样的东西:

$x = "<span>\hello</span>";

这是解决方案:

$x = str_replace("#", "\\", $x);
$x = preg_replace("/&/", "<span>", $x, 1);
$x = preg_replace("/&/", "</span>", $x, -1);

但它不起作用!

任何帮助?

0 个答案:

没有答案