Http\Response::setContentLength

public setContentLength (mixed $contentLength) Sets the response content-length $response->setContentLength(2048);

Cli\Dispatcher\Exception

extends class Phalcon\Exception implements Throwable Source on GitHub Methods final private Exception __clone () inherited from Exception Clone the exception public __construct ([string $message], [int $code], [Exception $previous]) inherited from Exception Exception constructor public __wakeup () inherited from Exception ... final public string getMessage () inherited from Exception Gets the Exception message final public int getCode () inherited from Exception Gets the Exception code fin

Mvc\Model\MetaDataInterface

Source on GitHub Methods abstract public setStrategy (Phalcon\Mvc\Model\MetaData\StrategyInterface $strategy) ... abstract public getStrategy () ... abstract public readMetaData (Phalcon\Mvc\ModelInterface $model) ... abstract public readMetaDataIndex (Phalcon\Mvc\ModelInterface $model, mixed $index) ... abstract public writeMetaDataIndex (Phalcon\Mvc\ModelInterface $model, mixed $index, mixed $data) ... abstract public readColumnMap (Phalcon\Mvc\ModelInterface $model) ... abstract public readC

Debug::setShowBackTrace

public setShowBackTrace (mixed $showBackTrace) Sets if files the exception’s backtrace must be showed

Dispatcher::setActionName

public setActionName (mixed $actionName) Sets the action name to be dispatched

Mvc\Model\Query::getIntermediate

public array getIntermediate () Returns the intermediate representation of the PHQL statement

Tag::javascriptInclude

public static string javascriptInclude ([array $parameters], [boolean $local]) Builds a SCRIPT[type=”javascript”] tag echo Phalcon\Tag::javascriptInclude("http://ajax.googleapis.com/ajax/libs/jquery/2.2.3/jquery.min.js", false); echo Phalcon\Tag::javascriptInclude("javascript/jquery.js"); Volt syntax: {{ javascript_include("http://ajax.googleapis.com/ajax/libs/jquery/2.2.3/jquery.min.js", false) }} {{ javascript_include("javascript/jquery.js") }}

Db\AdapterInterface::describeColumns

abstract public describeColumns (mixed $table, [mixed $schema]) ...

Registry::__get

final public __get (mixed $key) Returns an index in the registry

Mvc\Model\Validator\StringLength

extends abstract class Phalcon\Mvc\Model\Validator implements Phalcon\Mvc\Model\ValidatorInterface Source on GitHub Simply validates specified string length constraints use Phalcon\Mvc\Model\Validator\StringLength as StringLengthValidator; class Subscriptors extends \Phalcon\Mvc\Model { public function validation() { $this->validate(new StringLengthValidator(array( "field" => 'name_last', 'max' => 50, 'min' => 2, 'messageMaximum'