XMLWriter::fullEndElement()函數是PHP中的內置函數,用於結束使用XMLWriter::startElement()函數啟動的當前元素。 endElement()函數和fullEndElement()函數之間的區別在於,前者在元素為空的情況下向同一元素添加反斜杠,而後者則創建單獨的結束元素。
用法:
bool XMLWriter::fullEndElement( void )
參數:此函數不接受任何參數。
返回值:如果成功,此函數將返回TRUE,否則將返回FALSE。
以下示例說明了PHP中的XMLWriter::fullEndElement()函數:
範例1:
<?php 
  
// Create a new XMLWriter instance 
$writer = new XMLWriter(); 
  
// Create the output stream as PHP 
$writer->openURI('php://output'); 
  
// Start the document 
$writer->startDocument('1.0', 'UTF-8'); 
  
// Start a element 
$writer->startElement('p'); 
  
// End the element 
$writer->fullEndElement(); 
  
// End the document 
$writer->endDocument(); 
?>輸出:

範例2:在此程序中,我們將比較endElement()和fullEndElement()函數
<?php 
  
// Create a new XMLWriter instance 
$writer = new XMLWriter(); 
  
// Create the output stream as PHP 
$writer->openURI('php://output'); 
  
// Start the document 
$writer->startDocument('1.0', 'UTF-8'); 
  
// Set the indent 
$writer->setIndent(true); 
  
// Start a element 
$writer->startElement('fullEndElement'); 
  
// End the element 
$writer->fullEndElement(); 
  
// Start a element 
$writer->startElement('endElement'); 
  
// End the element 
$writer->endElement(); 
  
// End the document 
$writer->endDocument(); 
?>輸出:

參考: https://www.php.net/manual/en/function.xmlwriter-full-end-element.php
相關用法
- PHP XMLWriter endAttribute()用法及代碼示例
 - PHP XMLWriter startDtdAttlist()用法及代碼示例
 - PHP XMLWriter endDtdEntity()用法及代碼示例
 - PHP XMLWriter startAttributeNs()用法及代碼示例
 - PHP XMLWriter endDocument()用法及代碼示例
 - PHP XMLWriter startAttribute()用法及代碼示例
 - PHP XMLWriter startCdata()用法及代碼示例
 - PHP XMLWriter startDocument()用法及代碼示例
 - PHP XMLWriter setIndent()用法及代碼示例
 - PHP XMLWriter endComment()用法及代碼示例
 - PHP XMLWriter endCdata()用法及代碼示例
 - PHP XMLWriter openUri()用法及代碼示例
 - PHP XMLWriter startComment()用法及代碼示例
 - PHP XMLWriter endDtdAttlist()用法及代碼示例
 - PHP XMLWriter endDtdElement()用法及代碼示例
 
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | XMLWriter fullEndElement() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。
