SimpleXMLIterator::valid
Check whether the current element is valid
&reftitle.description;
public boolSimpleXMLIterator::valid
This method checks if the current element is valid after calls to
SimpleXMLIterator::rewind or
SimpleXMLIterator::next.
&reftitle.parameters;
&no.function.parameters;
&reftitle.returnvalues;
Returns &true; if the current element is valid, otherwise &false;
&reftitle.examples;
Check whether the current element is valid
SQL Basics');
$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
?>
]]>