Accessing @attribute from SimpleXML

前端 未结 8 1272
后悔当初
后悔当初 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:33

    It helped me to convert the result of simplexml_load_file($file) into a JSON Structure and decode it back:

    $xml = simplexml_load_file("$token.xml");
    $json = json_encode($xml);
    $xml_fixed = json_decode($json);
    
    $try1 = $xml->structure->{"@attributes"}['value'];
    print_r($try1);
    
    >> result: SimpleXMLElement Object
    (
    )
    
    $try2 = $xml_fixed->structure->{"@attributes"}['value'];
    print_r($try2);
    
    >> result: stdClass Object
    (
        [key] => value
    )
    

提交回复
热议问题