DOMComment_insertData_basic.phpt 403 B

123456789101112131415161718192021
  1. --TEST--
  2. Test inserting data into a DOMComment basic test
  3. --CREDITS--
  4. Andrew Larssen <al@larssen.org>
  5. London TestFest 2008
  6. --EXTENSIONS--
  7. dom
  8. --FILE--
  9. <?php
  10. //correct offset
  11. $dom = new DomDocument();
  12. $comment = $dom->createComment('test-comment');
  13. $comment->insertData(4,'-inserted');
  14. $dom->appendChild($comment);
  15. echo $dom->saveXML();
  16. ?>
  17. --EXPECT--
  18. <?xml version="1.0"?>
  19. <!--test-inserted-comment-->