Adding attributes : simplexml_load_string « XML « PHP
- PHP
- XML
- simplexml_load_string
Adding attributes
<?php
$xml = simplexml_load_file("books.xml");
foreach($xml->book as $book) {
echo $book->author." is ".$book->author->attributes().".<br />";
}
?>
Related examples in the same category