SimpleXMLIterator::next()函數是PHP中的內置函數,用於將SimpleXMLIterator元素移至下一個元素。
用法:
void SimpleXMLIterator::next( void )
參數:該函數不接受任何參數。
返回值:該函數不返回任何值。
以下示例程序旨在說明PHP中的SimpleXMLIterator::next()函數:
程序:
<?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();
// Use next() function to move
// to the next element
$xmlIt->next();
$xmlIt->next();
// Display the current element
var_dump($xmlIt->current());
?>
輸出:
object(SimpleXMLIterator)#2 (2) { ["email"]=> string(21) "abc@geeksforgeeks.org" ["mobile"]=> string(13) "+91-987654321" }
參考: https://www.php.net/manual/en/simplexmliterator.next.php
相關用法
- PHP SimpleXMLIterator key()用法及代碼示例
- PHP SimpleXMLIterator rewind()用法及代碼示例
- PHP SimpleXMLIterator getChildren()用法及代碼示例
- PHP SimpleXMLIterator hasChildren()用法及代碼示例
- PHP SimpleXMLIterator current()用法及代碼示例
- PHP SimpleXMLIterator valid()用法及代碼示例
- d3.js d3.lab()用法及代碼示例
- CSS var()用法及代碼示例
- PHP dir()用法及代碼示例
- d3.js d3.rgb()用法及代碼示例
- p5.js int()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | SimpleXMLIterator next() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。