Session\Adapter::setName

public setName (mixed $name) Set session name

Mvc\Model\Query\BuilderInterface::getGroupBy

abstract public getGroupBy () ...

Mvc\Model\Message::setType

public setType (mixed $type) Sets message type

Mvc\Collection::aggregate

public static aggregate ([array $parameters]) Perform an aggregation using the Mongo aggregation framework

Mvc\ModelInterface::delete

abstract public delete () ...

Translate\Adapter::_

public string _ (string $translateKey, [array $placeholders]) Returns the translation string of the given key (alias of method ‘t’)

Tag::setTitle

public static setTitle (mixed $title) Set the title of view content Phalcon\Tag::setTitle("Welcome to my Page");

Http\RequestInterface::hasServer

abstract public hasServer (mixed $name) ...

Cache\Backend\Redis

extends abstract class Phalcon\Cache\Backend implements Phalcon\Cache\BackendInterface Source on GitHub Allows to cache output fragments, PHP data or raw data to a redis backend This adapter uses the special redis key “_PHCR” to store all the keys internally used by the adapter use Phalcon\Cache\Backend\Redis; use Phalcon\Cache\Frontend\Data as FrontData; // Cache data for 2 days $frontCache = new FrontData([ 'lifetime' => 172800 ]); // Create the Cache setting redis connection o

Text::random

public static random ([mixed $type], [mixed $length]) Generates a random string based on the given type. Type is one of the RANDOM_* constants echo Phalcon\Text::random(Phalcon\Text::RANDOM_ALNUM); //"aloiwkqz"