SimpleXMLElement
PHP Manual

SimpleXMLElement::attributes

(PHP 5 >= 5.0.1)

SimpleXMLElement::attributesIdentifies an element's attributes

Opis

public SimpleXMLElement SimpleXMLElement::attributes ([ string $ns = NULL [, bool $is_prefix = false ]] )

This function provides the attributes and values defined within an xml tag.

Informacja: W SimpleXML wprowadzono zasadę dodawania pól iteracyjnych dla większości metod. Nie mogą być one przeglądane przez var_dump() ani przez nic innego co bada obiekty.

Parametry

ns

An optional namespace for the retrieved attributes

is_prefix

Default to FALSE

Zwracane wartości

Returns a SimpleXMLElement object that can be iterated over to loop through the attributes on the tag.

Returns NULL if called on a SimpleXMLElement object that already represents an attribute and not a tag.

Przykłady

Przykład #1 Interpret an XML string

<?php
$string 
= <<<XML
<a>
 <foo name="one" game="lonely">1</foo>
</a>
XML;

$xml simplexml_load_string($string);
foreach(
$xml->foo[0]->attributes() as $a => $b) {
    echo 
$a,'="',$b,"\"\n";
}
?>

Powyższy przykład wyświetli:

name="one"
game="lonely"

Zobacz też:


SimpleXMLElement
PHP Manual