Beispiel
Rück Attribute und Werte innerhalb des XML <body> Element:
<?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>";
}
?>
Führen Sie zB » Definition und Verwendung
Die attributes() Funktion gibt Attribute und Werte innerhalb eines XML - Tags.
Syntax
attributes( ns,is_prefix );
Parameter | Beschreibung |
---|---|
ns | Optional. Gibt einen Namespace für die retrieved Attribute |
is_prefix | Optional. Gibt einen Booleschen Wert. TRUE , wenn ns ein Präfix ist. FALSCH , wenn ns ist eine URI. Der Standardwert ist FALSE |
Technische Details
Rückgabewert: | Gibt ein SimpleXMLElement Objekt auf Erfolg |
---|---|
PHP Version: | 5.0.1+ |
<PHP SimpleXML Referenz