downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

SimpleXMLElement::getNamespaces> <SimpleXMLElement::getDocNamespaces
[edit] Last updated: Fri, 25 May 2012

view this page in

SimpleXMLElement::getName

(PHP 5 >= 5.1.3)

SimpleXMLElement::getNameXML 要素の名前を取得する

説明

public string SimpleXMLElement::getName ( void )

XML 要素の名前を取得します。

返り値

getName メソッドは、 SimpleXMLElement オブジェクトが参照している XML タグの名前を string で返します。

注意:

この例では example.php をインクルードしていますが、これは 基本的な使用法 の最初のサンプルにある XML 文字列を参照しています。

例1 XML 要素の名前の取得

<?php
include 'example.php';
$sxe = new SimpleXMLElement($xmlstr);

echo 
$sxe->getName() . "\n";

foreach (
$sxe->children() as $child)
{
    echo 
$child->getName() . "\n";
}

?>

上の例の出力は以下となります。

movies
movie



add a note add a note User Contributed Notes SimpleXMLElement::getName
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites