PHP 7.0.6 Released

SplFixedArray::valid

(PHP 5 >= 5.3.0, PHP 7)

SplFixedArray::validCheck whether the array contains more elements

Description

public bool SplFixedArray::valid ( void )

Checks if the array contains any more elements.

Parameters

This function has no parameters.

Return Values

Returns TRUE if the array contains any more elements, FALSE otherwise.

User Contributed Notes

c dot 1 at smithies dot org
5 years ago
This function will return TRUE whenever the iterator is within the array bounds, even if unset() has been called on the current element.
To Top