SearchTable Of ContentsPrevious topicClass Phalcon\Mvc\Model\Resultset\Simple Next topicClass Phalcon\Mvc\Model\Transaction This Page |
Class Phalcon\Mvc\Model\Row¶implements ArrayAccess, Phalcon\Mvc\Model\ResultInterface This component allows Phalcon\Mvc\Model to return rows without an associated entity. This objects implements the ArrayAccess interface to allow access the object as object->x or array[x]. Methods¶public setForceExists (boolean $forceExists) Forces that a model doesn’t need to be checked if exists before store it public boolean offsetExists (int $index) Checks whether offset exists in the row public string|PhalconMvcModelInterface offsetGet (int $index) Gets row in a specific position of the row public offsetSet (int $index, Phalcon\Mvc\ModelInterface $value) Rows cannot be changed. It has only been implemented to meet the definition of the ArrayAccess interface public offsetUnset (int $offset) Rows cannot be changed. It has only been implemented to meet the definition of the ArrayAccess interface |