Accessing @attribute from SimpleXML

前端 未结 8 1290
后悔当初
后悔当初 2020-11-22 00:33

I am having a problem accessing the @attribute section of my SimpleXML object. When I var_dump the entire object, I get the correct output, and wh

8条回答
  •  臣服心动
    2020-11-22 01:35

    You can get the attributes of an XML element by calling the attributes() function on an XML node. You can then var_dump the return value of the function.

    More info at php.net http://php.net/simplexmlelement.attributes

    Example code from that page:

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

提交回复
热议问题