mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
9 lines
261 B
PHP
9 lines
261 B
PHP
<?php
|
|
$dom = new domDocument(); // create a DOM object
|
|
$dom->load(dirname(__FILE__) . "/thedata.xml"); // load data from XML file
|
|
|
|
/* access elements by tag name */
|
|
foreach ($dom->getElementsByTagName('title') as $node) {
|
|
echo $node->nodeValue . "<br />";
|
|
}
|
|
?>
|