1、作用:设置为On时,对获得的数据中的单引号、双引号和反斜线进行转义。
2、默认情况下php.ini中magic_quotes_gpc设置为On,magic_quotes_runtime设置为Off。
3、magic_quotes_gpc和magic_quotes_runtime两者区别:
/* 对用户传入的变量进行转义操作。*/
if (!get_magic_quotes_gpc())
{
if (!empty($_GET))
{
$_GET = addslashes_deep($_GET);
}
if (!empty($_POST))
{
$_POST = addslashes_deep($_POST);
}
$_COOKIE = addslashes_deep($_COOKIE);
$_REQUEST = addslashes_deep($_REQUEST);
}