blob: e660b93e7f63a62333b080aa9b22b5b251aa5bb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
--TEST--
DomDocument::createProcessingInstruction() - error test for DomDocument::createProcessingInstruction()
--CREDITS--
Muhammad Khalid Adnan
# TestFest 2008
--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!
|