zpf 获取表单等数据的用法

时间:2022-08-25 07:15:13

2015年4月12日 12:25:35 星期日

zpf框架中获取表单数据的方法

     //获得get,post,url中的数据
private function setData()
{
$this->data = array_merge($_COOKIE, $_GET, $_POST, $this->route->args);
$this->ispost = count($_POST);
} //获取请求数据
public function getData($name, $safe=1)
{
if (!$safe) {
return isset($this->data[$name]) ? Safe::check($this->data[$name]) : NULL;
} else {
return isset($this->data[$name]) ? $this->data[$name] : NULL;
}
}