PHP | DOMDocument createProcessingInstruction()函数
DOMDocument::createProcessingInstruction()函数是PHP中的一个内置函数,用于创建 DOMProcessingInstruction 类的新实例。
句法:
DOMProcessingInstruction DOMDocument::createProcessingInstruction( $target, $data )
参数:该函数接受上面提到的两个参数,如下所述:
- $target:此参数保存处理指令的目标。
- $data:该参数保存处理指令的内容。
返回值:此函数在成功时返回新的 DOMProcessingInstruction,在失败时返回 FALSE。
下面的程序说明了PHP中的 DOMDocument::createProcessingInstruction()函数:
方案一:
createProcessingInstruction("name", "GeeksforGeeks");
// Append element to the document
$domDocument->appendChild($domPI);
// Create XML document and display it
echo $domDocument->saveXML();
?>
输出:
方案二:
createProcessingInstruction("name",
"GeeksforGeeks");
$domPI2 = $domDocument->createProcessingInstruction("contact",
"Noida");
$domPI3 = $domDocument->createProcessingInstruction("email",
"abc@geeksforgeeks.org");
// Append element to the document
$domDocument->appendChild($domPI1);
$domDocument->appendChild($domPI2);
$domDocument->appendChild($domPI3);
// Create XML document ans display it
echo $domDocument->saveXML();
?>
输出:
参考: https://www. PHP.net/manual/en/domdocument.createprocessing 指令。 PHP