mirror of
https://github.com/php/php-src.git
synced 2026-03-26 09:12:14 +01:00
8 lines
145 B
PHP
8 lines
145 B
PHP
<?php
|
|
$books = simplexml_load_file('book.xml')->book;
|
|
|
|
foreach ($books as $book) {
|
|
echo "{$book->title} was written by {$book->author}\n";
|
|
}
|
|
?>
|