php yaf框架判断当前请求为get或post,通过$this->getRequest()去实现。$this->getRequest()中封装了许多功能,除了可以判断请求类型还能进行文件上传、获取当前请求url、获取cookie等操作。
1.yaf判断当前是否为get请求:
getRequest()->isGet()){
echo "当前是get请求";
}2.yaf判断当前是否为post请求:
getRequest()->isPost()){
echo "当前是post请求";
}3.yaf文件上传操作,$this->getRequest()->getFiles()等同于原生php文件上传中的$_FILES函数:
getRequest()->getFiles()){
//var_dump($file);
//move_uploaded_file()
...
}4.yaf获取当前请求的url:
getRequest()->getRequestUri();
5.yaf接收get或post请求参数过来的值:
getRequest()->Get('参数');
//post
echo $this->getRequest()->getPost('参数');6.yag判断是否为ajax请求:
php原生:
yaf:
getRequest()->sXmlHttpRequest()){ echo "是ajax请求"; }7.yaf获取cookie:
getRequest()->getcookie('cookie名称')8.输出当前请求方法:
getRequest()->getMethod();9.输出原生php $_SERVER 的值:
getRequest()->getServer('REMOTE_ADDR');



