ArrayIterator::valid

(PHP 5 >= 5.0.0, PHP 7) Check whether array contains more entries public bool ArrayIterator::valid ( void ) Checks if the array contains any more entries. Returns: Returns TRUE if the iterator is valid, otherwise FALSE Examples: ArrayIterator::valid() example <?php $array = array('1' => 'one'); $arrayobject = ne

ArrayIterator::unserialize

(PHP 5 >= 5.3.0, PHP 7) Unserialize public string ArrayIterator::unserialize ( string $serialized ) Unserialize. Parameters: serialized The serialized ArrayIterator object to be unserialized. Returns: The ArrayIterator. This function is currently not documented; only its argument list is available.

ArrayIterator::offsetUnset

(PHP 5 >= 5.0.0, PHP 7) Unset value for an offset public void ArrayIterator::offsetUnset ( string $index ) Unsets a value for an offset. Parameters: index The offset to unset. Returns: No value is returned. This function is currently not documented; only its argument list is available.

ArrayIterator::offsetExists

(PHP 5 >= 5.0.0, PHP 7) Check if offset exists public void ArrayIterator::offsetExists ( string $index ) Checks if the offset exists. Parameters: index The offset being checked. Returns: TRUE if the offset exists, otherwise FALSE This function is currently not documented; only its argument list is availabl

ArrayIterator::rewind

(PHP 5 >= 5.0.0, PHP 7) Rewind array back to the start public void ArrayIterator::rewind ( void ) This rewinds the iterator to the beginning. Returns: No value is returned. Examples: ArrayIterator::rewind() example <?php $arrayobject = new ArrayObject(); $arrayobject[] = 'zero'; $arrayobject[] = 'one'; $arrayobjec

ArrayIterator::offsetSet

(PHP 5 >= 5.0.0, PHP 7) Set value for an offset public void ArrayIterator::offsetSet ( string $index, string $newval ) Sets a value for a given offset. Parameters: index The index to set for. newval The new value to store at the index. Returns: No value is returned. This

ArrayIterator::serialize

(PHP 5 >= 5.3.0, PHP 7) Serialize public string ArrayIterator::serialize ( void ) Serialize. Returns: The serialized ArrayIterator. This function is currently not documented; only its argument list is available. See also: ArrayIterator::unserialize() -

ArrayIterator::next

(PHP 5 >= 5.0.0, PHP 7) Move to next entry public void ArrayIterator::next ( void ) The iterator to the next entry. Returns: No value is returned. Examples: ArrayIterator::next() example <?php $arrayobject = new ArrayObject(); $arrayobject[] = 'zero'; $arrayobject[] = 'one'; $iterator = $arrayobject->getIterat

ArrayIterator::offsetGet

(PHP 5 >= 5.0.0, PHP 7) Get value for an offset public mixed ArrayIterator::offsetGet ( string $index ) Gets the value from the provided offset. Parameters: index The offset to get the value from. Returns: The value at offset index. This function is currently not documented; only its argument list is availa

ArrayIterator::seek

(PHP 5 >= 5.0.0, PHP 7) Seek to position public void ArrayIterator::seek ( int $position ) Parameters: position The position to seek to. Returns: No value is returned. This function is currently not documented; only its argument list is available.