PHP getName()関数
例
XML要素と子の名前を返します。
<?php
$xml=<<<XML
<?xml version="1.0" standalone="yes"?>
<cars>
<car id="1">Volvo</car>
<car id="2">BMW</car>
<car id="3">Saab</car>
</cars>
XML;
$sxe=new SimpleXMLElement($xml);
// Get the name of the cars element
echo $sxe->getName() . "<br>";
// Also print out the names of the children of the cars element
foreach ($sxe->children() as $child)
{
echo $child->getName() . "<br>";
}
?>
定義と使用法
getName()関数は、XML要素の名前を返します。
構文
<div>SimpleXMLElement::getName()</div>
Technical Details
Return Value: | 文字列としてのXML要素の名前 |
---|---|
PHP バージョン: | 5.1.3+ |
プログラミング学習を加速させる
プログラミングをプロの講師に教えてもらいませんか。