Debug\Dump::one

public one (mixed $variable, [mixed $name]) Alias of variable() method

Mvc\RouterInterface::setDefaultModule

abstract public setDefaultModule (mixed $moduleName) ...

Db\Profiler

Source on GitHub Instances of Phalcon\Db can generate execution profiles on SQL statements sent to the relational database. Profiled information includes execution time in milliseconds. This helps you to identify bottlenecks in your applications. $profiler = new \Phalcon\Db\Profiler(); //Set the connection profiler $connection->setProfiler($profiler); $sql = "SELECT buyer_name, quantity, product_name FROM buyers LEFT JOIN products ON buyers.pid=products.id"; //Execute a SQL statement $con

Tag::linkTo

public static string linkTo (array | string $parameters, [string $text], [boolean $local]) Builds a HTML A tag using framework conventions echo Phalcon\Tag::linkTo("signup/register", "Register Here!"); echo Phalcon\Tag::linkTo(array("signup/register", "Register Here!")); echo Phalcon\Tag::linkTo(array("signup/register", "Register Here!", "class" => "btn-primary")); echo Phalcon\Tag::linkTo("http://phalconphp.com/", "Phalcon", FALSE); echo Phalcon\Tag::linkTo(array("http://phalconphp.com/

Security::setRandomBytes

public setRandomBytes (mixed $randomBytes) Sets a number of bytes to be generated by the openssl pseudo random generator

Security::hasLibreSsl

public hasLibreSsl () Testing for LibreSSL

Mvc\Micro\CollectionInterface::get

abstract public get (mixed $routePattern, mixed $handler, [mixed $name]) ...

Assets\Inline

Source on GitHub Represents an inline asset $inline = new \Phalcon\Assets\Inline('js', 'alert("hello world");'); Methods public getType () ... public getContent () ... public getFilter () ... public getAttributes () ... public __construct (string $type, string $content, [boolean $filter], [array $attributes]) Phalcon\Assets\Inline constructor public setType (mixed $type) Sets the inline’s type public setFilter (mixed $filter) Sets if the resource must be filtered or not public setAttributes (a

Mvc\Router\Group::setHostname

public setHostname (mixed $hostname) Set a hostname restriction for all the routes in the group

Mvc\Model\Transaction\Manager::getDI

public getDI () Returns the dependency injection container