12345678910111213141516171819202122232425262728293031 |
- --TEST--
- DomDocument::createProcessingInstruction() - error test for DomDocument::createProcessingInstruction()
- --CREDITS--
- Muhammad Khalid Adnan
- --SKIPIF--
- <?php require_once('skipif.inc'); ?>
- --FILE--
- <?php
- $doc = new DOMDocument;
- $node = $doc->createElement("para");
- $newnode = $doc->appendChild($node);
- try {
- $test_proc_inst =
- $doc->createProcessingInstruction( "bla bla bla" );
- $node->appendChild($test_proc_inst);
- echo $doc->saveXML();
- }
- catch (DOMException $e)
- {
- echo 'Test failed!', PHP_EOL;
- }
- ?>
- --EXPECT--
- Test failed!
|