提问人:wyqydsyq 提问时间:2/23/2012 更新时间:2/23/2012 访问量:130
变量全局变量?
Variable global variable?
问:
我正在尝试自动清理全局变量数组的输入,如下所示:
$sanitize = array('_POST', '_GET', '_REQUEST', '_COOKIE', '_SESSION');
foreach($sanitize as $type){
$property = trim(strtolower($type), '_');
$this->$property = $this->cleanse($$type);
}
但是我得到:(等等,对于我正在尝试的所有全局变量)Notice: Undefined variable: _REQUEST
做我想要完成的事情真的可能吗?
谢谢。
答:
评论