tutoriais mais recente desenvolvimento web
 

PHP attributes() Function

<PHP SimpleXML Referência

Exemplo

Retornar atributos e valores dentro do XML <body> elemento:

<?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>";
  }
?>
Exemplo executar »

Definição e Uso

O attributes() função retorna atributos e valores dentro de uma tag XML.


Sintaxe

attributes( ns,is_prefix );

Parâmetro Descrição
ns Opcional. Especifica um namespace para os retrieved atributos
is_prefix Opcional. Especifica um valor booleano. TRUE se ns é um prefixo. FALSE se ns é um URI. O padrão é FALSE

Detalhes técnicos

Valor de retorno: Retorna um objeto SimpleXMLElement em caso de sucesso
PHP Versão: 5.0.1+

<PHP SimpleXML Referência