Method |
Description |
|
__isset ( $name ) : boolean |
PHP magic method used to check the presence of a field as document properties, i.e. |
|
__unset ( unknown_type $name ) : void |
PHP magic method used when unset() is called on a Document instance. |
|
current ( ) |
|
|
export ( Source $dataSource, array $options = [] ) |
|
|
next ( ) : object | null |
Returns the next document in the set, and advances the object's internal pointer. If the end
of the set is reached, a new document will be fetched from the data source connection handle
($_handle). If no more documents can be fetched, returns null. |
|
offsetGet ( string $offset ) : mixed |
Returns the value at specified offset. |
|
offsetSet ( $offset, $data ) |
|
|
rewind ( ) : object |
Rewinds the collection of sub-Documents to the beginning and returns the first one found. |
|