刪除單個backslashe我想從字符串如何從字符串在PHP
$str = "Lionel Messi\'s is a footballer of the year.";
$str = stripslashes($str);
刪除單個反斜槓,但它無法正常工作。
刪除單個backslashe我想從字符串如何從字符串在PHP
$str = "Lionel Messi\'s is a footballer of the year.";
$str = stripslashes($str);
刪除單個反斜槓,但它無法正常工作。
這很容易做到這一點。
<?php
$str = "Hello world\'s";
echo stripslashes($str);
?>
您可以嘗試
str_replace函數( '/', '',$ STR)
你可以試試這個:
echo preg_replace('/\\\\/', '', $string);
我投票關閉因爲這是不可重現的。正如預期的那樣,PHP 5.4產生了「梅西的年度足球先生」和_echo $ str_。 –