找到
Zend_Controller_Request_Http
的isPost()
方法
public function isPost()
{
if ('POST' == $this->getMethod()) {
return true;
}
return false;
}
并getMethod()
是
public function getMethod()
{
return $this->getServer('REQUEST_METHOD');
}
因此isPost()
,不寻找$_POST
数组中存在的数据来检测POST请求,它会查看$_SERVER
变量REQUEST_METHOD