Rumah > Artikel > pembangunan bahagian belakang > $.ajax 请求php后台 自动加上反斜杠 转义字符
如图:
$.ajax
PHP后台返回:
PHP代码
关掉php设置项 magic quotes gpc
或者对结果运行stripslashes
关掉php设置项 magic quotes gpc
或者对结果运行stripslashes
你是通过浏览器的插件看的Response吧?
web直接输出也带 反斜杠?
因为你把 magic_quotes_gpc 开关打开了
if (get_magic_quotes_gpc()) { foreach($_POST as &$v) $v = stripslashes($v);}
你是通过浏览器的插件看的Response吧?
web直接输出也带 反斜杠?
因为你把 magic_quotes_gpc 开关打开了
if (get_magic_quotes_gpc()) { foreach($_POST as &$v) $v = stripslashes($v);}
每个人的php环境是一样的?