DOMDocument::createProcessingInstruction()函数是PHP中的内置函数,用于创建DOMProcessingInstruction类的新实例。
用法:
DOMProcessingInstruction DOMDocument::createProcessingInstruction( $target, $data )
参数:该函数接受上述和以下描述的两个参数:
- $target:此参数保存处理指令的目标。
- $data:此参数保存处理指令的内容。
返回值:如果成功,此函数返回新的DOMProcessingInstruction;如果失败,则返回FALSE。
以下示例程序旨在说明PHP中的DOMDocument::createProcessingInstruction()函数:
示例1:
<?php
// Create a new DOMDocument
$domDocument = new DOMDocument('1.0', 'iso-8859-1');
// Use createProcessingInstruction() function to create
// a new Processing Instruction node
$domPI = $domDocument->createProcessingInstruction("name", "GeeksforGeeks");
// Append element to the document
$domDocument->appendChild($domPI);
// Create XML document and display it
echo $domDocument->saveXML();
?>
输出:
<?xml version="1.0" encoding="iso-8859-1"?> <?name GeeksforGeeks?>
示例2:
<?php
// Create a new DOMDocument
$domDocument = new DOMDocument('1.0', 'iso-8859-1');
// Use createProcessingInstruction() function to create
// a new Processing Instruction node
$domPI1 = $domDocument->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();
?>
输出:
<?xml version="1.0" encoding="iso-8859-1"?> <?name GeeksforGeeks?> <?contact Noida?> <?email abc@geeksforgeeks.org?>
参考: https://www.php.net/manual/en/domdocument.createprocessinginstruction.php
相关用法
- PHP DOMDocument createAttribute()用法及代码示例
- PHP DOMDocument __construct()用法及代码示例
- PHP DOMDocument createAttributeNS()用法及代码示例
- PHP DOMDocument createComment()用法及代码示例
- PHP DOMDocument normalizeDocument()用法及代码示例
- PHP DOMDocument loadXML()用法及代码示例
- PHP DOMDocument loadHTMLFile()用法及代码示例
- PHP DOMDocument createElementNS()用法及代码示例
- PHP DOMDocument createCDATASection()用法及代码示例
- PHP DOMDocument load()用法及代码示例
- PHP DOMDocument loadHTML()用法及代码示例
- PHP DOMDocument createElement()用法及代码示例
- PHP DOMDocument createEntityReference()用法及代码示例
- PHP DOMDocument saveXML()用法及代码示例
- PHP DOMDocument importNode()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | DOMDocument createProcessingInstruction() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。