GoLang SimpleXMLIterator::valid

request it (267)
GoLang replacement for PHP's SimpleXMLIterator::valid [edit | history]



Do you know a GoLang replacement for PHP's SimpleXMLIterator::valid? Write it!

PHP SimpleXMLIterator::valid

PHP original manual for SimpleXMLIterator::valid [ show | php.net ]

SimpleXMLIterator::valid

(PHP 5, PHP 7)

SimpleXMLIterator::validCheck whether the current element is valid

Description

public bool SimpleXMLIterator::valid ( void )

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

Parameters

This function has no parameters.

Return Values

Returns TRUE if the current element is valid, otherwise FALSE

Examples

Example #1 Check whether the current element is valid

<?php
$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
?>