如果您可以访问网络服务器的 php.ini,最好的办法是完全禁用 magic_quotes,因为它们已被弃用:
; Magic quotes
;
; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = Off
; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off
; Use Sybase-style magic quotes (escape ' with '' instead of \').
magic_quotes_sybase = Off
如果您没有服务器访问权限,请使用带有以下选项的 .htaccess 文件
php_flag magic_quotes_gpc Off
如果您不想使用它,剩下的最后一件事就是使用 unescape 函数,例如
function ref_stripslashes(&$value,$key) {
$value = stripslashes($value);
}
if((function_exists("get_magic_quotes_gpc") && get_magic_quotes_gpc()) || (ini_get('magic_quotes_sybase') && (strtolower(ini_get('magic_quotes_sybase'))!="off")) ) {
array_walk_recursive($_GET,'ref_stripslashes');
array_walk_recursive($_POST,'ref_stripslashes');
array_walk_recursive($_COOKIE,'ref_stripslashes');
}
这取自php 手册,路西法的评论
json_decode($_POST['json_string'])
然后应该工作。