Assets\Manager::output

public output (Phalcon\Assets\Collection $collection, callback $callback, string $type) Traverses a collection calling the callback to generate its HTML

Db\Dialect\Sqlite::addForeignKey

public addForeignKey (mixed $tableName, mixed $schemaName, Phalcon\Db\ReferenceInterface $reference) Generates SQL to add an index to a table

Http\ResponseInterface::appendContent

abstract public appendContent (mixed $content) ...

Security::CRYPT_BLOWFISH

integer CRYPT_BLOWFISH

Application::handle

abstract public handle () Handles a request

Session\Adapter\Libmemcached::getLibmemcached

public getLibmemcached () ...

Cache\Backend\Memcache::exists

public boolean exists ([string $keyName], [long $lifetime]) Checks if cache exists and it isn’t expired

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')));

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();

Queue\Beanstalk::reserve

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