1234567891011121314151617181920212223242526 |
- --TEST--
- DOMDocument::saveHTML() vs DOMDocumet::saveXML()
- --SKIPIF--
- <?php
- require_once dirname(__FILE__) .'/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";
- --EXPECTF--
- <p>Hi.<br/>there</p>
- <p>Hi.<br>there</p>
|