Php/func simplexml key

来自菜鸟教程
跳转至:导航、​搜索

PHP key()函数

Simple PHP SimpleXML参考

倒退到第一个元素并返回当前键(这是当前元素的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());
?>

定义和用法

key()函数返回当前键(这是当前元素的XML标签名称)。

句法

SimpleXMLIterator::key()

技术细节

返回值: 成功时当前元素的XML标签名称。否则为FALSE
PHP版本: 5.0+

Simple PHP SimpleXML参考