(Yaf >=3.0.5)
Yaf_Request_Abstract::isDelete — Determine if the request is a DELETE request
Checks whether the request was sent with the DELETE method.
Esta função não possui parâmetros.
Exemplo #1 Yaf_Request_Abstract::isDelete() example
<?php
class CommentController extends Yaf_Controller_Abstract
{
public function removeAction()
{
// Assuming the request was sent with DELETE /comment/remove/id/12
var_dump($this->getRequest()->isDelete());
}
}
?>O exemplo acima produzirá algo semelhante a:
bool(true)