Ultimele tutoriale de dezvoltare web
 

PHP attributes() Function

<PHP SimpleXML Reference

Exemplu

Întoarcere atributele și valorile în XML <body> Elementul:

<?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>";
  }
?>
Run exemplu »

Definiție și utilizare

attributes() Funcția returnează atributele și valorile într - un tag XML.


Sintaxă

attributes( ns,is_prefix );

Parametru Descriere
ns Opțional. Specifică un spațiu de nume pentru retrieved atributele
is_prefix Opțional. Specifică o valoare booleană. TRUE dacă ns este un prefix. FALS dacă ns este un URI. Implicit este FALSE

Detalii tehnice

Întoarcere Valoare: Returnează un obiect SimpleXMLElement pe succes
Versiune PHP: 5.0.1+

<PHP SimpleXML Reference