mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
7 lines
145 B
PHP
7 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";
|
|
}
|
|
?>
|