Cache\BackendInterface::save

abstract public save ([mixed $keyName], [mixed $content], [mixed $lifetime], [mixed $stopBuffer]) ...

Db\Adapter::fetchColumn

public string | ** fetchColumn (string $sqlQuery, [array $placeholders], [int | string $column]) Returns the n’th field of first row in a SQL query result //Getting count of robots $robotsCount = $connection->fetchColumn("SELECT count(*) FROM robots"); print_r($robotsCount); //Getting name of last edited robot $robot = $connection->fetchColumn("SELECT id, name FROM robots order by modified desc", 1); print_r($robot);

Forms\ElementInterface::getName

abstract public getName () ...

Db\Result\Pdo::setFetchMode

public setFetchMode (mixed $fetchMode, [mixed $colNoOrClassNameOrObject], [mixed $ctorargs]) Changes the fetching mode affecting Phalcon\Db\Result\Pdo::fetch() //Return array with integer indexes $result->setFetchMode(\Phalcon\Db::FETCH_NUM); //Return associative array without integer indexes $result->setFetchMode(\Phalcon\Db::FETCH_ASSOC); //Return associative array together with integer indexes $result->setFetchMode(\Phalcon\Db::FETCH_BOTH); //Return an object $result->setFetch

Validation\MessageInterface::setField

abstract public setField (mixed $field) ...

Tag::timeField

public static string timeField (array $parameters) Builds a HTML input[type=”time”] tag

Mvc\Model\MetaData\Libmemcached::MODELS_COLUMN_MAP

integer MODELS_COLUMN_MAP

Security\Random::number

public number (mixed $len) Generates a random number between 0 and $len Returns an integer: 0 <= result <= $len. $random = new \Phalcon\Security\Random(); echo $random->number(16); // 8

Mvc\Model\Manager::initialize

public initialize (Phalcon\Mvc\ModelInterface $model) Initializes a model in the model manager

Mvc\Collection\ManagerInterface::addBehavior

abstract public addBehavior (Phalcon\Mvc\CollectionInterface $model, Phalcon\Mvc\Collection\BehaviorInterface $behavior) ...