首页 > 编程 > PHP > 正文

处理php自动反斜杠的函数代码

2019-11-22 01:16:19
字体:
来源:转载
供稿:网友
复制代码 代码如下:

//处理php自动反斜杠
if (get_magic_quotes_gpc()) {
function stripslashes_deep($value)
{
$value = is_array($value) ?
array_map('stripslashes_deep', $value) :
stripslashes($value);

return $value;
}

$_POST = array_map('stripslashes_deep', $_POST);
$_GET = array_map('stripslashes_deep', $_GET);
$_COOKIE = array_map('stripslashes_deep', $_COOKIE);
}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表