Http\Request::getAcceptableContent

public getAcceptableContent () Gets an array with mime/types and their quality accepted by the browser/client from _SERVER[“HTTP_ACCEPT”]

Http\Request::get

public get ([mixed $name], [mixed $filters], [mixed $defaultValue], [mixed $notAllowEmpty], [mixed $noRecursive]) Gets a variable from the $_REQUEST superglobal applying filters if needed. If no parameters are given the $_REQUEST superglobal is returned //Returns value from $_REQUEST["user_email"] without sanitizing $userEmail = $request->get("user_email"); //Returns value from $_REQUEST["user_email"] with sanitizing $userEmail = $request->get("user_email", "email");

Http\Request

implements Phalcon\Http\RequestInterface, Phalcon\Di\InjectionAwareInterface Source on GitHub Encapsulates request information for easy and secure access from application controllers. The request object is a simple value object that is passed between the dispatcher and controller classes. It packages the HTTP request environment. use Phalcon\Http\Request; $request = new Request(); if ($request->isPost()) { if ($request->isAjax()) { echo 'Request was made using POST and A

Http\Cookie\Exception

extends class Phalcon\Exception implements Throwable Source on GitHub Methods final private Exception __clone () inherited from Exception Clone the exception public __construct ([string $message], [int $code], [Exception $previous]) inherited from Exception Exception constructor public __wakeup () inherited from Exception ... final public string getMessage () inherited from Exception Gets the Exception message final public int getCode () inherited from Exception Gets the Exception code fin

Http\CookieInterface::useEncryption

abstract public useEncryption (mixed $useEncryption) ...

Http\CookieInterface::setValue

abstract public setValue (mixed $value) ...

Http\CookieInterface::setSecure

abstract public setSecure (mixed $secure) ...

Http\CookieInterface::setPath

abstract public setPath (mixed $path) ...

Http\CookieInterface::setHttpOnly

abstract public setHttpOnly (mixed $httpOnly) ...

Http\CookieInterface::setExpiration

abstract public setExpiration (mixed $expire) ...