Mvc\Collection::find

public static find ([array $parameters]) Allows to query a set of records that match the specified conditions //How many robots are there? $robots = Robots::find(); echo "There are ", count($robots), "\n"; //How many mechanical robots are there? $robots = Robots::find(array( array("type" => "mechanical") )); echo "There are ", count(robots), "\n"; //Get and print virtual robots ordered by name $robots = Robots::findFirst(array( array("type" => "virtual"), "order"

Mvc\Router\RouteInterface::reset

abstract public static reset () ...

Http\RequestInterface::hasQuery

abstract public hasQuery (mixed $name) ...

Cache\Multiple::push

public push (Phalcon\Cache\BackendInterface $backend) Adds a backend

Security

This component aids the developer in common security tasks such as password hashing and Cross-Site Request Forgery protection (CSRF). Password Hashing Storing passwords in plain text is a bad security practice. Anyone with access to the database will immediately have access to all user accounts thus being able to engage in unauthorized activities. To combat that, many applications use the familiar one way hashing methods “md5” and “sha1”. However, hardware evolves each day, and becomes faster,

Db\Adapter::rollbackSavepoint

public rollbackSavepoint (mixed $name) Rollbacks given savepoint

Mvc\ViewInterface::setLayout

abstract public setLayout (mixed $layout) ...

Security\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

Mvc\View\Engine\Volt\Compiler::setOptions

public setOptions (array $options) Sets the compiler options

Mvc\Model\Row::jsonSerialize

public array jsonSerialize () Serializes the object for json_encode