(PHP 5、PHP 7、PHP 8)
DOMProcessingInstruction::__construct — 创建一个新的 DOMProcessingInstruction 对象
创建一个新的 DOMProcessingInstruction 对象。此对象是只读的。它可以附加到文档,但在节点与文档关联之前,不能将其他节点附加到此节点。若要创建可写入的节点,请使用 DOMDocument::createProcessingInstruction。
name
处理指令的标签名称。
value
处理指令的值。
示例 #1 创建一个新的 DOMProcessingInstruction 对象
<?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();
?>
上面的示例将输出
<?xml version="1.0" encoding="UTF-8"?> <html><body><?php echo "Hello World"; ?></body></html>