public isSoapRequested () Alias of isSoap(). It will be deprecated in future versions
public isSoap () Checks whether request has been made using SOAP
public isSecureRequest () Alias of isSecure(). It will be deprecated in future versions
public isSecure () Checks whether request has been made using any secure layer
public isPut () Checks whether HTTP method is PUT. if _SERVER[“REQUEST_METHOD”]===”PUT”
public isPurge () Checks whether HTTP method is PURGE (Squid and Varnish support). if _SERVER[“REQUEST_METHOD”]===”PURGE”
public isPost () Checks whether HTTP method is POST. if _SERVER[“REQUEST_METHOD”]===”POST”
public isPatch () Checks whether HTTP method is PATCH. if _SERVER[“REQUEST_METHOD”]===”PATCH”
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
Page 232 of 382