downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Interfaces> <SimpleXMLIterator::rewind
Last updated: Fri, 20 Nov 2009

view this page in

SimpleXMLIterator::valid

(PHP 5 >= 5.1.0)

SimpleXMLIterator::validCheck whether the current element is valid

Description

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



add a note add a note User Contributed Notes
SimpleXMLIterator::valid
There are no user contributed notes for this page.

Interfaces> <SimpleXMLIterator::rewind
Last updated: Fri, 20 Nov 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites