用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2633|回复: 2
收起左侧

CI够狠

[复制链接]
发表于 2009-5-17 00:56:08 | 显示全部楼层 |阅读模式
PHP复制代码
 
foreach (array($_GET, $_POST, $_COOKIE, $_SERVER, $_FILES, $_ENV, (isset($_SESSION) && is_array($_SESSION)) ? $_SESSION : array()) as $global)
                {
                        if ( ! is_array($global))
                        {
                                if ( ! in_array($global, $protected))
                                {
                                        unset($GLOBALS[$global]);
                                }
                        }
                        else
                        {
                                foreach ($global as $key => $val)
                                {
                                        if ( ! in_array($key, $protected))
                                        {
                                                unset($GLOBALS[$key]);
                                        }
 
                                        if (is_array($val))
                                        {
                                                foreach($val as $k => $v)
                                                {
                                                        if ( ! in_array($k, $protected))
                                                        {
                                                                unset($GLOBALS[$k]);
                                                        }
                                                }
                                        }
                                }
                        }
                }
 
复制代码
发表于 2009-5-17 01:00:40 | 显示全部楼层
怎么了?????????
 楼主| 发表于 2009-5-17 09:46:35 | 显示全部楼层
销毁了那么多。。。。

本版积分规则