0.10 Doctrine_Access
Doctrine Access
Provides array access and property overload interface for Doctrine subclasses
Direct Sub-Classes
- Doctrine_Collection: A persistent collection of entities.
Method Summary
| Returns | Name | Description |
|---|---|---|
| boolean | offsetExists | |
| mixed | offsetGet | |
| offsetSet | ||
| offsetUnset | ||
| setArray | ||
| mixed | __get | |
| boolean | __isset | |
| __set | ||
| __unset |
Method Details
-
(boolean) offsetExists($offset)
Check if an offset axists
Doctrine_Access
-
(mixed) offsetGet($offset)
An alias of get()
-
offsetSet($offset, $value)
Sets $offset to $value
-
offsetUnset($offset)
Unset a given offset
-
$array An array of key => value pairs setArray($array)
Set an entire aray to the data
-
(mixed) __get($name)
Get key from data
-
(boolean) __isset($name)
Check if key exists in data
Doctrine_Access
-
__set(($name) $name, ($value) $value)
Set key and value to data
-
__unset($name)
Remove key from data




Comments (0) [ add comment ]
No Comments
Add Comment