mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
11 lines
314 B
PHP
11 lines
314 B
PHP
<?php
|
|
$dom = new DomDocument();
|
|
/* load HTML document (if it is not valid) */
|
|
@$dom->loadHTMLFile("http://" . $_SERVER['SERVER_ADDR'] .
|
|
dirname($_SERVER['PHP_SELF']) . '/1');
|
|
|
|
$xp = new DomXpath($dom);
|
|
/* use XPath to get the title of the */
|
|
$res = $xp->query("//title/text()");
|
|
echo $res->item(0)->nodeValue;
|
|
?>
|