📜  PHP | SimpleXMLIterator next()函数

📅  最后修改于: 2022-05-13 01:56:20.066000             🧑  作者: Mango

PHP | SimpleXMLIterator next()函数

SimpleXMLIterator::next()函数是PHP中的一个内置函数,用于将 SimpleXMLIterator 元素移动到下一个元素。

句法:

void SimpleXMLIterator::next( void )

参数:此函数不接受任何参数。

返回值:此函数不返回任何值。

下面的程序说明了PHP中的 SimpleXMLIterator::next()函数:

程序:


        GeeksforGeeks
        
Noida India
                     abc@geeksforgeeks.org             +91-987654321               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