(PHP 8)
SimpleXMLElement::key — Return current key
Prior to PHP 8.0, SimpleXMLElement::key() was only declared on the subclass SimpleXMLIterator.
This method gets the XML tag name of the current element.
У цієї функції немає параметрів.
Returns the XML tag name of the element referenced by the current SimpleXMLElement object.
Throws an Error on failure.
Версія | Опис |
---|---|
8.1.0 |
An Error is now thrown if
SimpleXMLElement::key() is called on an
invalid iterator. Previously, false was returned.
|
Приклад #1 Get the current XML tag key
<?php
$xmlElement = new SimpleXMLElement('<books><book>PHP basics</book><book>XML basics</book></books>');
try {
echo var_dump($xmlElement->key());
} catch (Error $e) {
echo $e->getMessage(), "\n";
}
$xmlElement->rewind(); // rewind to the first element
echo var_dump($xmlElement->key());
?>
Поданий вище приклад виведе:
Iterator not initialized or already consumed string(4) "book"