SimpleXMLIterator::valid()函数是PHP中的一个内置函数,用于检查当前元素是否有效。
用法:
bool SimpleXMLIterator::valid( void )
参数:该函数不接受任何参数。
返回值:如果当前元素有效,则此函数返回TRUE,否则返回FALSE。
以下示例程序旨在说明PHP中的SimpleXMLIterator::valid()函数:
示例1:
<?php
// Store the xml element to variable
$xml = <<<XML
<organization>
<name>GeeksforGeeks</name>
<address>Noida India</address>
<contact>
<email>abc@geeksforgeeks.org</email>
<mobile>+91-987654321</mobile>
</contact>
</organization>
XML;
$xmlIt = new SimpleXMLIterator($xml);
// Use rewind() function to rewind
// to the first element
$xmlIt->rewind();
// Display the result
var_dump($xmlIt->valid());
// Use next() function to move
// the next element
$xmlIt->next();
$xmlIt->next();
$xmlIt->next();
// Display the result
var_dump($xmlIt->valid());
?>
输出:
bool(true) bool(false)
示例2:
<?php
// Store the xml element to variable
$xml = <<<XML
<organization>
<name>GeeksforGeeks</name>
<address>Noida India</address>
<contact>
<email>abc@geeksforgeeks.org</email>
<mobile>+91-987654321</mobile>
</contact>
</organization>
XML;
$xmlIt = new SimpleXMLIterator($xml);
// Loop starts from first element of xml and
// run upto when elements are not valid
for( $xmlIt->rewind(); $xmlIt->valid(); $xmlIt->next() ) {
var_dump($xmlIt->key());
}
?>
输出:
string(4) "name" string(7) "address" string(7) "contact"
参考: https://www.php.net/manual/en/simplexmliterator.valid.php
相关用法
- PHP SimpleXMLIterator next()用法及代码示例
- PHP SimpleXMLIterator key()用法及代码示例
- PHP SimpleXMLIterator current()用法及代码示例
- PHP SimpleXMLIterator getChildren()用法及代码示例
- PHP SimpleXMLIterator rewind()用法及代码示例
- PHP SimpleXMLIterator hasChildren()用法及代码示例
- PHP SplDoublyLinkedList valid()用法及代码示例
- PHP AppendIterator valid()用法及代码示例
- PHP SplObjectStorage valid()用法及代码示例
- PHP SplFixedArray valid()用法及代码示例
- PHP ArrayIterator valid()用法及代码示例
- PHP DirectoryIterator valid()用法及代码示例
- PHP Imagick valid()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | SimpleXMLIterator valid() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。