Annotations\Reader::parseDocBlock

public static parseDocBlock (mixed $docBlock, [mixed $file], [mixed $line]) Parses a raw doc block returning the annotations found

Mvc\CollectionInterface::fireEventCancel

abstract public fireEventCancel (mixed $eventName) ...

Http\Response\Headers::toArray

public toArray () Returns the current headers as an array

Mvc\Model\MetaDataInterface::getNotNullAttributes

abstract public getNotNullAttributes (Phalcon\Mvc\ModelInterface $model) ...

Http\Response::redirect

public redirect ([mixed $location], [mixed $externalRedirect], [mixed $statusCode]) Redirect by HTTP to another action or URL //Using a string redirect (internal/external) $response->redirect("posts/index"); $response->redirect("http://en.wikipedia.org", true); $response->redirect("http://www.example.com/new-location", true, 301); //Making a redirection based on a named route $response->redirect(array( "for" => "index-lang", "lang" => "jp", "controller" => "ind

Db\Adapter\Pdo::query

public query (mixed $sqlStatement, [mixed $bindParams], [mixed $bindTypes]) Sends SQL statements to the database server returning the success state. Use this method only when the SQL statement sent to the server is returning rows //Querying data $resultset = $connection->query("SELECT * FROM robots WHERE type='mechanical'"); $resultset = $connection->query("SELECT * FROM robots WHERE type=?", array("mechanical"));

Mvc\Model\MetaDataInterface::getIdentityField

abstract public getIdentityField (Phalcon\Mvc\ModelInterface $model) ...

Db\Dialect::forUpdate

public forUpdate (mixed $sqlQuery) Returns a SQL modified with a FOR UPDATE clause $sql = $dialect->forUpdate('SELECT * FROM robots'); echo $sql; // SELECT * FROM robots FOR UPDATE

Mvc\Model\MetaData\Memory::MODELS_ATTRIBUTES

integer MODELS_ATTRIBUTES

Db\AdapterInterface::dropPrimaryKey

abstract public dropPrimaryKey (mixed $tableName, mixed $schemaName) ...