PHP key() 函数
实例
回退到第一个元素并返回当前键(即当前元素的XML标签名):
<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Do not forget me this weekend!</body>
</note>
XML;
$xml = new SimpleXMLIterator($note);
// rewind to the first element
$xml->rewind();
// return current key
var_dump($xml->key());
?>
运行实例 »
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Do not forget me this weekend!</body>
</note>
XML;
$xml = new SimpleXMLIterator($note);
// rewind to the first element
$xml->rewind();
// return current key
var_dump($xml->key());
?>
定义和用法
key() 函数返回当前键(即当前元素的 XML 标记名)。
语法
SimpleXMLIterator::key()
技术细节
返回值: | 成功时当前元素的 XML 标记名称。 否则为 FALSE |
---|---|
PHP 版本: | 5.0+ |