mirror of
https://github.com/php/php-src.git
synced 2024-12-03 06:44:07 +08:00
7aacc705d0
Closes GH-5958
28 lines
423 B
PHP
28 lines
423 B
PHP
--TEST--
|
|
DOMDocument::saveHTML() vs DOMDocumet::saveXML()
|
|
--SKIPIF--
|
|
<?php
|
|
require_once __DIR__ .'/skipif.inc';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$d = new DOMDocument();
|
|
$str = <<<EOD
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<p>Hi.<br/>there</p>
|
|
</body>
|
|
</html>
|
|
EOD;
|
|
$d->loadHTML($str);
|
|
$e = $d->getElementsByTagName("p");
|
|
$e = $e->item(0);
|
|
echo $d->saveXml($e),"\n";
|
|
echo $d->saveHtml($e),"\n";
|
|
?>
|
|
--EXPECT--
|
|
<p>Hi.<br/>there</p>
|
|
<p>Hi.<br>there</p>
|