summaryrefslogtreecommitdiff
path: root/ext/dom/tests/DOMDocument_createProcessingInstruction_error.phpt
blob: a0c12b1fe714249a521f06cb5f8fb8366498cb86 (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
31
--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!