Skip to content

PHP code snippet – How to get attribute value in xml ?

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

$attr = $xml->Var[0]->attributes();
echo $attr['my_var'];
See also  How to count substring in a string in Python?

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.