当前位置:主页 > 软件编程 > PHP代码 >

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

时间:2021-03-05 12:41:48 | 栏目:PHP代码 | 点击:

复制代码 代码如下:

//处理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);
}

您可能感兴趣的文章:

相关文章