有时由于某些原因,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!
这个技巧对我很有帮助,因为我以前遇到过这个问题。