Zend Framework
1.12
|
Public Member Functions | |
__construct (array $data) | |
Constructor. | |
count () | |
Returns the number of child nodes. | |
current () | |
Return the current child. | |
key () | |
Return the child'd RDN. | |
next () | |
Move forward to next child. | |
rewind () | |
Rewind the Iterator to the first child. | |
valid () | |
Check if there is a current child after calls to rewind() or next(). | |
hasChildren () | |
Checks if current node has children. | |
getChildren () | |
Returns the children for the current node. | |
offsetGet ($rdn) | |
Returns a child with a given RDN. | |
offsetExists ($rdn) | |
Checks whether a given rdn exists. | |
offsetUnset ($name) | |
Does nothing. | |
offsetSet ($name, $value) | |
Does nothing. | |
toArray () | |
Get all children as an array. | |
__construct | ( | array | $data | ) |
Constructor.
array | $data |
count | ( | ) |
Returns the number of child nodes.
Implements Countable
current | ( | ) |
getChildren | ( | ) |
Returns the children for the current node.
hasChildren | ( | ) |
Checks if current node has children.
Returns whether the current element has children.
key | ( | ) |
Return the child'd RDN.
Implements Iterator
next | ( | ) |
Move forward to next child.
Implements Iterator
offsetExists | ( | $rdn | ) |
Checks whether a given rdn exists.
Implements ArrayAccess.
string | $rdn |
offsetGet | ( | $rdn | ) |
Returns a child with a given RDN.
Implements ArrayAccess.
string | $rdn |
offsetSet | ( | $name, | |
$value | |||
) |
Does nothing.
Implements ArrayAccess.
string | $name | |
mixed | $value |
offsetUnset | ( | $name | ) |
Does nothing.
Implements ArrayAccess.
string | $name |
rewind | ( | ) |
Rewind the Iterator to the first child.
Implements Iterator
toArray | ( | ) |
Get all children as an array.