欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-06-12 07:58:44
复制代码 代码如下://处理php自动反斜杠 if (get_magic_quotes_gpc()) { function stripslashes_deep($value...
复制代码 代码如下:

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