有时由于某种原因,PHP 或 Javascript 或一些调皮的插入会插入很多反斜杠。普通的函数不会注意到这一点。因此,有必要进行“膨胀”
<?php
function removeslashes($string)
{
$string=implode("",explode("\\",$string));
return stripslashes(trim($string));
}
/* 示例 */
$text="My dog don\\\\\\\\\\\\\\\\'t like the postman!";
echo removeslashes($text);
?>
结果:My dog don't like the postman!
这个技巧对我很有帮助,因为我以前遇到过这个问题。