PropertyPathInterface
interface PropertyPathInterface implements Traversable
A sequence of property names or array indices.
Methods
Returns the string representation of the property path.
Returns the length of the property path, i.e. the number of elements.
Returns the parent property path.
Returns the elements of the property path as array.
Returns the element at the given index in the property path.
Returns whether the element at the given index is a property.
Returns whether the element at the given index is an array index.
Details
at line 26
string
__toString()
Returns the string representation of the property path.
at line 33
int
getLength()
Returns the length of the property path, i.e. the number of elements.
at line 45
PropertyPath
getParent()
Returns the parent property path.
The parent property path is the one that contains the same items as this one except for the last one.
If this property path only contains one item, null is returned.
at line 52
array
getElements()
Returns the elements of the property path as array.
at line 63
string
getElement(int $index)
Returns the element at the given index in the property path.
at line 74
bool
isProperty(int $index)
Returns whether the element at the given index is a property.
at line 85
bool
isIndex(int $index)
Returns whether the element at the given index is an array index.