Assets\Collection::getPosition

public getPosition () ...

Cache\Backend\Memory::delete

public boolean delete (string $keyName) Deletes a value from the cache by its key

Logger\AdapterInterface

Source on GitHub Methods abstract public setFormatter (Phalcon\Logger\FormatterInterface $formatter) ... abstract public getFormatter () ... abstract public setLogLevel (mixed $level) ... abstract public getLogLevel () ... abstract public log (mixed $type, [mixed $message], [array $context]) ... abstract public begin () ... abstract public commit () ... abstract public rollback () ... abstract public close () ... abstract public debug (mixed $message, [array $context]) ... abstract public error

Logger\Multiple

Source on GitHub Handles multiples logger handlers Methods public getLoggers () ... public getFormatter () ... public getLogLevel () ... public push (Phalcon\Logger\AdapterInterface $logger) Pushes a logger to the logger tail public setFormatter (Phalcon\Logger\FormatterInterface $formatter) Sets a global formatter public setLogLevel (mixed $level) Sets a global level public log (mixed $type, [mixed $message], [array $context]) Sends a message to each registered logger public critical (mixed $m

Cache\Multiple::exists

public boolean exists ([string | int $keyName], [long $lifetime]) Checks if cache exists in at least one backend

Mvc\Model\Relation::getIntermediateModel

public getIntermediateModel () Gets the intermediate model for has-*-through relations

Cli\Dispatcher::EXCEPTION_ACTION_NOT_FOUND

integer EXCEPTION_ACTION_NOT_FOUND

Queue\Beanstalk::reserve

public reserve ([mixed $timeout]) Reserves/locks a ready job from the specified tube.

Cache\Backend\Libmemcached::flush

public flush () Immediately invalidates all existing items. Memcached does not support flush() per default. If you require flush() support, set $config[“statsKey”]. All modified keys are stored in “statsKey”. Note: statsKey has a negative performance impact. $cache = new \Phalcon\Cache\Backend\Libmemcached($frontCache, ["statsKey" => "_PHCM"]); $cache->save('my-data', array(1, 2, 3, 4, 5)); //'my-data' and all other used keys are deleted $cache->flush();

Db\Adapter\Pdo::convertBoundParams

public convertBoundParams (mixed $sql, [array $params]) Converts bound parameters such as :name: or ?1 into PDO bind params ? print_r($connection->convertBoundParams('SELECT * FROM robots WHERE name = :name:', array('Bender')));