(Yaf >=1.0.0)
Yaf_Request_Abstract::isHead — Determine if the request is a HEAD request
Checks whether the request was sent with the HEAD method.
У цієї функції немає параметрів.
Приклад #1 Yaf_Request_Abstract::isHead() example
<?php
class FeedController extends Yaf_Controller_Abstract
{
public function indexAction()
{
// Assuming the request was sent with HEAD /feed
if ($this->getRequest()->isHead()) {
// Headers only, skip rendering the body
return false;
}
}
}
?>