I remember using something like
$this->getRequest()->isPost()
but it seems like there isn't such a function. How can I check if the request is post so I can validate the form etc
$this->getRequest()
in the context of a controller is annoted to return an object of class Zend_Controller_Request_Abstract
. isPost()
is a method of Zend_Controller_Request_Http
which is derived from Zend_Controller_Request_Abstract
.
So your IDE cannot offer this method, but it is there.
if ($this->getRequest()->isPost())
{
echo "this is post request";
}
else
{
echo "this is not the post request";
}
if($this->getRequest()->getMethod() == 'POST') {
echo "You've got post!";
}
isPost() should be there too, though, I don't know why you don't find it.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With