php怎么关闭自动过滤输入和输出
伊谢尔伦
伊谢尔伦 2017-04-10 14:26:02
0
1
821
<?php
set_magic_quotes_runtime(false);
ini_set('magic_quotes_gpc',0);
ini_set('magic_quotes_runtime',0);

echo $_GET['a'];

这样。访问a.php?a=1'\
输出的还是l\'\\

怎么能自动关闭?

不使用stripslashes

伊谢尔伦
伊谢尔伦

小伙看你根骨奇佳,潜力无限,来学PHP伐。

membalas semua(1)
迷茫
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);
}
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan