zpf 获取表单等数据的用法
生活随笔
收集整理的這篇文章主要介紹了
zpf 获取表单等数据的用法
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
2015年4月12日 12:25:35 星期日
zpf框架中獲取表單數(shù)據(jù)的方法
?
1 //獲得get,post,url中的數(shù)據(jù) 2 private function setData() 3 { 4 $this->data = array_merge($_COOKIE, $_GET, $_POST, $this->route->args); 5 $this->ispost = count($_POST); 6 } 7 8 //獲取請求數(shù)據(jù) 9 public function getData($name, $safe=1) 10 { 11 if (!$safe) { 12 return isset($this->data[$name]) ? Safe::check($this->data[$name]) : NULL; 13 } else { 14 return isset($this->data[$name]) ? $this->data[$name] : NULL; 15 } 16 }?
轉(zhuǎn)載于:https://www.cnblogs.com/iLoveMyD/p/4419309.html
總結(jié)
以上是生活随笔為你收集整理的zpf 获取表单等数据的用法的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: LeetCode篇之栈:155(常数时间
- 下一篇: (王道408考研操作系统)第四章文件管理