我有这样的事情:
$x = "#frac {2} {3}";
我尝试使用此代码但不起作用:
$x = str_replace("#","\"",$x);
我想在此字符串中用#替换#。但我不能使用str_replace。
任何帮助?
答案 0 :(得分:1)
您正在用"替换# 要在字符串中使用反斜杠,您需要将其转义 How do you make a string in PHP with a backslash in it?
$x = "#frac {2} {3}";
$x = str_replace("#", "\\", $x);