我记得用过类似的东西
$this->getRequest()->isPost()
但似乎没有这样的功能。如何检查请求是否已过帐,以便我可以验证表格等
最佳答案
注释了 Controller 上下文中的$this->getRequest()
以返回Zend_Controller_Request_Abstract
类的对象。 isPost()
是从Zend_Controller_Request_Http
派生的Zend_Controller_Request_Abstract
的方法。
因此,您的IDE无法提供此方法,但是它已经存在。
关于zend-framework - 我如何检查请求是否在Zend Framework中发布,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4481471/