DOMImplementation_createDocument_basic.phpt 226 B

12345678910111213
  1. --TEST--
  2. DOMImplementation::createDocument()
  3. --EXTENSIONS--
  4. dom
  5. --FILE--
  6. <?php
  7. declare(strict_types=1);
  8. $x = new DOMImplementation();
  9. $doc = $x->createDocument(null, 'html');
  10. echo $doc->saveHTML();
  11. ?>
  12. --EXPECT--
  13. <html></html>