SimpleXMLIterator::current

(PHP 5 >= 5.1.0)

SimpleXMLIterator::currentReturns the current element

Описание

public mixed SimpleXMLIterator::current ( void )

This method returns the current element as a SimpleXMLIterator object or NULL.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

Returns the current element as a SimpleXMLIterator object or NULL on failure.

Примеры

Пример #1 Return the current element

<?php
$xmlIterator 
= new SimpleXMLIterator('<books><book>PHP basics</book><book>XML basics</book></books>');
var_dump($xmlIterator->current());

$xmlIterator->rewind(); // rewind to first element
var_dump($xmlIterator->current());
?>

Результат выполнения данного примера:

NULL
object(SimpleXMLIterator)#2 (1) {
  [0]=>
  string(10) "PHP basics"
}

Смотрите также


Участник рейтинга Тэглайн 2010