我有一個字符串包含'\',但是當我用空白 替換字符串時顯示錯誤。如何在php中str_replace 符號
$emailbody = str_replace('\','',$emailbody);
謝謝大家
我有一個字符串包含'\',但是當我用空白 替換字符串時顯示錯誤。如何在php中str_replace 符號
$emailbody = str_replace('\','',$emailbody);
謝謝大家
嘗試stripslashes
此
$emailbody = "hello \ its a testing\ string";
echo $emailbody = stripslashes($emailbody);
注意是stripslashes
只刪除backslashes
不轉發
或者
echo $emailbody = str_replace("\\","",$emailbody);
輸出
hello its a testing string
讓您遠離反斜槓所以... \\
在這裏你去:
$emailbody = str_replace('\\', '', $emailbody);
試試這個, 使用\/
$emailbody = str_replace('\/','',$emailbody);
什麼是您的電子郵件b ody,請你把它放在這裏,你想要什麼? – rahul
請提供更多的上下文,提供[最小的,完整的可驗證的示例](http://stackoverflow.com/help/mcve)幫助我們爲您提供幫助。 – dubes