Working with HTTP request type (method) in CakePHP

in CakePHP


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');

Documentation:

#cakephp