Create a new DOMProcessingInstruction object in PHP
Description
The following code shows how to create a new DOMProcessingInstruction object.
Example
//www . j a v a 2 s. c o m
<?php
$dom = new DOMDocument('1.0', 'UTF-8');
$html = $dom->appendChild(new DOMElement('html'));
$body = $html->appendChild(new DOMElement('body'));
$pinode = new DOMProcessingInstruction('php', 'echo "Hello World"; ');
$body->appendChild($pinode);
echo $dom->saveXML();
?>
The code above generates the following result.