Mvc\View::getLayoutsDir

public getLayoutsDir () Gets the current layouts sub-directory

Cache\Frontend\Msgpack::getLifetime

public getLifetime () Returns the cache lifetime

Http\CookieInterface::delete

abstract public delete () ...

Request Environment

Every HTTP request (usually originated by a browser) contains additional information regarding the request such as header data, files, variables, etc. A web based application needs to parse that information so as to provide the correct response back to the requester. Phalcon\Http\Request encapsulates the information of the request, allowing you to access it in an object-oriented way. use Phalcon\Http\Request; // Getting a request instance $request = new Request(); // Check whether the request

Db\AdapterInterface::getDefaultIdValue

abstract public getDefaultIdValue () ...

Http\RequestInterface::has

abstract public has (mixed $name) ...

CryptInterface::getKey

abstract public getKey () ...

Forms\ElementInterface::getFilters

abstract public getFilters () ...

Events\Manager::arePrioritiesEnabled

public arePrioritiesEnabled () Returns if priorities are enabled

Debug\Dump

Source on GitHub Dumps information about a variable(s) $foo = 123; echo (new \Phalcon\Debug\Dump())->variable($foo, "foo"); $foo = "string"; $bar = ["key" => "value"]; $baz = new stdClass(); echo (new \Phalcon\Debug\Dump())->variables($foo, $bar, $baz); Methods public getDetailed () ... public setDetailed (mixed $detailed) ... public __construct ([array $styles], [mixed $detailed]) Phalcon\Debug\Dump constructor public all () Alias of variables() method protected getS