(Yaf >=1.0.0)
Yaf_Request_Abstract::isPut — Determine if the request is a PUT request
Checks whether the request was sent with the PUT method.
This function has no parameters.
Example #1 Yaf_Request_Abstract::isPut() example
<?php
class DocumentController extends Yaf_Controller_Abstract
{
public function saveAction()
{
// Assuming the request was sent with PUT /document/save/id/17
if ($this->getRequest()->isPut()) {
$payload = $this->getRequest()->getRaw();
}
var_dump($this->getRequest()->isPut());
}
}
?>The above example will output something similar to:
bool(true)