SimpleXMLElement::attributes

(PHP 5 >= 5.0.1, PHP 7)
Identifies an element's attributes
public SimpleXMLElement SimpleXMLElement::attributes ([ string $ns = NULL [, bool $is_prefix = false ]] )

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

Note: SimpleXML has made a rule of adding iterative properties to most methods. They cannot be viewed using var_dump() or anything else which can examine objects.

Parameters:
ns

An optional namespace for the retrieved attributes

is_prefix

Default to FALSE

Returns:

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.

Examples:
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";
}
?>

The above example will output:

name="one"
game="lonely"
See also:

Basic SimpleXML usage -

doc_php
2016-02-24 16:15:13
Comments
Leave a Comment

Please login to continue.