Validation\Validator\Numericality::validate

public validate (Phalcon\Validation $validation, mixed $field) Executes the validation

Text::RANDOM_NOZERO

integer RANDOM_NOZERO

Mvc\Micro::patch

public Phalcon\Mvc\Router\RouteInterface patch (string $routePattern, callable $handler) Maps a route to a handler that only matches if the HTTP method is PATCH

Mvc\View\Simple

extends abstract class Phalcon\Di\Injectable implements Phalcon\Events\EventsAwareInterface, Phalcon\Di\InjectionAwareInterface, Phalcon\Mvc\ViewBaseInterface Source on GitHub This component allows to render views without hierarchical levels use Phalcon\Mvc\View\Simple as View; $view = new View(); // Render a view echo $view->render('templates/my-view', ['some' => $param]); // Or with filename with extension echo $view->render('templates/my-view.volt', ['parameter' => $here]

Crypt::decryptBase64

public decryptBase64 (mixed $text, [mixed $key], [mixed $safe]) Decrypt a text that is coded as a base64 string

Events\Manager::fireQueue

final public mixed fireQueue (SplPriorityQueue | array $queue, Phalcon\Events\Event $event) Internal handler to call a queue of events

Dispatcher::EXCEPTION_INVALID_HANDLER

integer EXCEPTION_INVALID_HANDLER

Db\Adapter::insert

public boolean insert (string | array $table, array $values, [array $fields], [array $dataTypes]) Inserts data into a table using custom RDBMS SQL syntax // Inserting a new robot $success = $connection->insert( "robots", array("Astro Boy", 1952), array("name", "year") ); // Next SQL sentence is sent to the database system INSERT INTO `robots` (`name`, `year`) VALUES ("Astro boy", 1952);

EscaperInterface::getEncoding

abstract public getEncoding () ...

Events\Manager::isCollecting

public isCollecting () Check if the events manager is collecting all all the responses returned by every registered listener in a single fire