📜  PHP | XMLWriter endPi()函数

📅  最后修改于: 2022-05-13 01:56:19.454000             🧑  作者: Mango

PHP | XMLWriter endPi()函数

XMLWriter::endPi()函数是PHP中的一个内置函数,用于结束使用XMLWriter::startPi()函数启动的当前 PI。处理指令 (PI) 允许文档包含不属于文档字符数据的一部分但传递给 XML 的指令。 PI 在网页中不可见,其行为类似于评论。

句法:

bool XMLWriter::endPi( void )

参数:此函数不接受任何参数。

返回值:此函数在成功时返回 TRUE,在失败时返回 FALSE。

下面的示例说明了PHP中的XMLWriter::endPi()函数

示例 1:

openURI('php://output');
  
// Start the document
$writer->startDocument('1.0', 'UTF-8');
  
// Start the Pi
$writer->startPi('php');
  
// Write the instruction
$writer->text('echo $a;');
  
// End the Pi
$writer->endPi();
  
// End the document
$writer->endDocument();
?>

输出:

示例 2:

openURI('php://output');
  
// Start the document
$writer->startDocument('1.0', 'UTF-8');
  
// Start the Pi which is not visible
$writer->startPi('xml-stylesheet');
  
// End the Pi
$writer->endPi();
  
// Start a element
$writer->startElement('p');
  
// Add value to the element
$writer->text('GeeksforGeeks');
  
// End the element
$writer->endElement();
  
// End the document
$writer->endDocument();
?>

输出:

GeeksforGeeks

参考: https://www. PHP.net/manual/en/函数.xmlwriter-end-pi。 PHP