0
我有這樣的事情:有特殊字符替換字符
$x = "#frac {2} {3}";
我試試這個代碼,不過這並不工作:
$x = str_replace("#","\"",$x);
我想在此字符串與\替換#。但我不能使用str_replace。
有幫助嗎?
我有這樣的事情:有特殊字符替換字符
$x = "#frac {2} {3}";
我試試這個代碼,不過這並不工作:
$x = str_replace("#","\"",$x);
我想在此字符串與\替換#。但我不能使用str_replace。
有幫助嗎?
你用替換# 「
要你需要轉義字符串中使用反斜線。
How do you make a string in PHP with a backslash in it?
$x = "#frac {2} {3}";
$x = str_replace("#", "\\", $x);
嘗試'$ X = str_replace函數(」 # 「」 \\ 「,$ x);' – martindilling 2014-10-30 07:52:29
你正在轉義引號而不是反斜槓 – Ghost 2014-10-30 07:53:39