我正在尝试自动清理像这样的全局变量数组的输入:
$sanitize = array('_POST', '_GET', '_REQUEST', '_COOKIE', '_SESSION');
foreach($sanitize as $type){
$property = trim(strtolower($type), '_');
$this->$property = $this->cleanse($$type);
}
但是我得到:Notice: Undefined variable: _REQUEST
(对于我正在尝试的所有全局变量等等)
正在做我想要实现的目标吗?
感谢。