例
XML内の属性と値を返します<body>要素:
<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body date="2014-01-01" type="private">Don't
forget me this weekend!</body>
</note>
XML;
$xml = simplexml_load_string($note);
foreach($xml->body[0]->attributes() as
$a => $b)
{
echo $a,'="',$b,"<br>";
}
?>
»実行例 定義と使用法
attributes()関数は、XMLタグ内の属性と値を返します。
構文
attributes( ns,is_prefix );
パラメーター | 説明 |
---|---|
ns | 任意。 以下のための名前空間を指定しretrieved属性 |
is_prefix | 任意。 ブール値を指定します。 NSは接頭辞である場合はTRUE。 NSは URIである場合はFALSE。 デフォルトはFALSEです |
技術的な詳細
戻り値: | 成功した場合にSimpleXMLElementオブジェクトを返します。 |
---|---|
PHPバージョン: | 5.0.1+ |
<PHPのSimpleXMLリファレンス