Forms\Element::setUserOption

public Phalcon\Forms\ElementInterface setUserOption (string $option, mixed $value) Sets an option for the element

Forms\ElementInterface::clear

abstract public clear () ...

Mvc\Model\Resultset::offsetGet

public offsetGet (mixed $index) Gets row in a specific position of the resultset

Db\Reference::getReferencedSchema

public getReferencedSchema () ...

Di\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

Db\ColumnInterface::getSize

abstract public getSize () ...

Cli\RouterInterface::getMatches

abstract public getMatches () ...

Validation\Validator\InclusionIn

extends abstract class Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface Source on GitHub Check if a value is included into a list of values use Phalcon\Validation\Validator\InclusionIn; $validator->add('status', new InclusionIn([ 'message' => 'The status must be A or B', 'domain' => array('A', 'B') ])); $validator->add(['status', 'type'], new InclusionIn([ 'message' => [ 'status' => 'The status must be A or B',

Escaper

implements Phalcon\EscaperInterface Source on GitHub Escapes different kinds of text securing them. By using this component you may prevent XSS attacks. This component only works with UTF-8. The PREG extension needs to be compiled with UTF-8 support. $escaper = new \Phalcon\Escaper(); $escaped = $escaper->escapeCss("font-family: <Verdana>"); echo $escaped; // font\2D family\3A \20 \3C Verdana\3E Methods public setEncoding (mixed $encoding) Sets the encoding to be used by the escaper $

Mvc\Model\Query::setType

public setType (mixed $type) Sets the type of PHQL statement to be executed