(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.
この関数にはパラメータはありません。
例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());
}
}
?>上の例の出力は、 たとえば以下のようになります。
bool(true)