Db\Column::TYPE_DOUBLE

integer TYPE_DOUBLE

Mvc\Model\MessageInterface::getMessage

abstract public getMessage () ...

Mvc\Model\MessageInterface::setType

abstract public setType (mixed $type) ...

Http\Response\CookiesInterface::has

abstract public has (mixed $name) ...

Mvc\Model\MetaData\Memcache

extends abstract class Phalcon\Mvc\Model\MetaData implements Phalcon\Mvc\Model\MetaDataInterface, Phalcon\Di\InjectionAwareInterface Source on GitHub Stores model meta-data in the Memcache. By default meta-data is stored for 48 hours (172800 seconds) $metaData = new Phalcon\Mvc\Model\Metadata\Memcache(array( 'prefix' => 'my-app-id', 'lifetime' => 86400, 'host' => 'localhost', 'port' => 11211, 'persistent' => false )); Constants integer MODELS_ATTRIBUTES in

Db\Adapter\Pdo::escapeString

public escapeString (mixed $str) Escapes a value to avoid SQL injections according to the active charset in the connection $escapedStr = $connection->escapeString('some dangerous value');

Db\Adapter\Pdo\Sqlite::getDefaultValue

public getDefaultValue () Returns the default value to make the RBDM use the default value declared in the table definition //Inserting a new robot with a valid default value for the column 'year' $success = $connection->insert( "robots", array("Astro Boy", $connection->getDefaultValue()), array("name", "year") );

Cache\BackendInterface::get

abstract public get (mixed $keyName, [mixed $lifetime]) ...

Db\Dialect\Mysql::dropForeignKey

public dropForeignKey (mixed $tableName, mixed $schemaName, mixed $referenceName) Generates SQL to delete a foreign key from a table

Mvc\Model\Transaction\Failed::getRecord

public getRecord () Returns validation record messages which stop the transaction