PHP Portal » PHP Handbuch » SimpleXMLIterator::valid

Werbung

SimpleXMLIterator::valid


(PHP 5 >= 5.1.0)

SimpleXMLIterator::validCheck whether the current element is valid

Beschreibung

bool SimpleXMLIterator::valid ( void )

This method checks if the current element is valid after calls to SimpleXMLIterator::rewind or SimpleXMLIterator::next.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Returns TRUE if the current element is valid, otherwise FALSE

Beispiele

PHP Code
1
2
3
4
5
$xmlIterator = new SimpleXMLIterator('<books><book>SQL Basics</book></books>'); $xmlIterator->rewind(); // rewind to the first element echo var_dump($xmlIterator->valid()); // bool(true) $xmlIterator->next(); // advance to the next element echo var_dump($xmlIterator->valid()); // bool(false) because there is only one element