Http\Response::getHeaders

public getHeaders () Returns headers set by the user

DispatcherInterface::forward

abstract public forward (mixed $forward) ...

Text

Source on GitHub Provides utilities to work with texts Constants integer RANDOM_ALNUM integer RANDOM_ALPHA integer RANDOM_HEXDEC integer RANDOM_NUMERIC integer RANDOM_NOZERO Methods public static camelize (mixed $str, [mixed $delimiter]) Converts strings to camelize style echo Phalcon\Text::camelize('coco_bongo'); // CocoBongo echo Phalcon\Text::camelize('co_co-bon_go', '-'); // Co_coBon_go echo Phalcon\Text::camelize('co_co-bon_go', '_-'); // CoCoBonGo public static uncameli

Filter\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::create

public create ([mixed $data], [mixed $whiteList]) Inserts a model instance. If the instance already exists in the persistence it will throw an exception Returning true on success or false otherwise. //Creating a new robot $robot = new Robots(); $robot->type = 'mechanical'; $robot->name = 'Astro Boy'; $robot->year = 1952; $robot->create(); //Passing an array to create $robot = new Robots(); $robot->create(array( 'type' => 'mechanical', 'name' => 'Astro Boy', 'ye

Http\CookieInterface::getSecure

abstract public getSecure () ...

Logger\Formatter\Json

extends abstract class Phalcon\Logger\Formatter implements Phalcon\Logger\FormatterInterface Source on GitHub Formats messages using JSON encoding Methods public string format (string $message, int $type, int $timestamp, [array $context]) Applies a format to a message before sent it to the internal log public getTypeString (mixed $type) inherited from Phalcon\Logger\Formatter Returns the string meaning of a logger constant public interpolate (string $message, [array $context]) inherited from P

Cache\Backend\Redis::queryKeys

public queryKeys ([string $prefix]) Query the existing cached keys

Mvc\ModuleDefinitionInterface

Source on GitHub Methods abstract public registerAutoloaders ([Phalcon\DiInterface $dependencyInjector]) ... abstract public registerServices (Phalcon\DiInterface $dependencyInjector) ...

Validation\ValidatorInterface::getOption

abstract public getOption (mixed $key, [mixed $defaultValue]) ...