mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

Only functional change is the renaming of the functions `dom_document_substitue_entities_(read|write)` to replace `substitue` with `substitute`.
25 lines
386 B
PHP
25 lines
386 B
PHP
--TEST--
|
|
DOMDocument::saveHTML() vs DOMDocument::saveXML()
|
|
--EXTENSIONS--
|
|
dom
|
|
--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>
|