Get the request type (method):
$this->request->getMethod()
(For the older versions before 3.4, use $this->request->method()
)
Check the request type (method):
$this->request->is('post');
in CakePHP
$this->request->getMethod()
(For the older versions before 3.4, use $this->request->method()
)
$this->request->is('post');