public isHead () Checks whether HTTP method is HEAD. if _SERVER[“REQUEST_METHOD”]===”HEAD”
public isOptions () Checks whether HTTP method is OPTIONS. if _SERVER[“REQUEST_METHOD”]===”OPTIONS”
public isMethod (mixed $methods, [mixed $strict]) Check if HTTP method match any of the passed methods When strict is true it checks if validated methods are real HTTP methods
public isGet () Checks whether HTTP method is GET. if _SERVER[“REQUEST_METHOD”]===”GET”
public isAjax () Checks whether request has been made using ajax
final public hasServer (mixed $name) Checks whether $_SERVER superglobal has certain index
public hasPost (mixed $name) Checks whether $_POST superglobal has certain index
public hasQuery (mixed $name) Checks whether $_GET superglobal has certain index
public hasFiles ([mixed $onlySuccessful]) Checks whether request include attached files
public hasPut (mixed $name) Checks whether the PUT data has certain index
Page 233 of 382