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");

DiInterface::set

abstract public set (mixed $name, mixed $definition, [mixed $shared]) ...

Cache\Backend\Memory::save

public save ([string $keyName], [string $content], [long $lifetime], [boolean $stopBuffer]) Stores cached content into the backend and stops the frontend

Session\Adapter\Redis::getLifetime

public getLifetime () ...

Mvc\Model\ResultsetInterface::getFirst

abstract public getFirst () ...

Http\Request::getMethod

final public getMethod () Gets HTTP method which request has been made If the X-HTTP-Method-Override header is set, and if the method is a POST, then it is used to determine the “real” intended HTTP method. The _method request parameter can also be used to determine the HTTP method, but only if setHttpMethodParameterOverride(true) has been called. The method is always an uppercased string.

Mvc\Model\Criteria::sharedLock

public sharedLock ([mixed $sharedLock]) Adds the “shared_lock” parameter to the criteria

Logger\Multiple::setFormatter

public setFormatter (Phalcon\Logger\FormatterInterface $formatter) Sets a global formatter

Mvc\Collection::getId

public MongoId getId () Returns the value of the _id property

Http\RequestInterface::isPurge

abstract public isPurge () ...