当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP XMLWriter startDocument()用法及代码示例


XMLWriter::startDocument()函数是PHP中的一个内置函数,用于启动文档。然后,该文档需要以XMLWriter::endDocument函数结尾。

用法:

bool XMLWriter::startDocument( string $version, 
string $encoding, string $standalone )

参数:此函数接受上述和以下所述的三个参数:



  • $version (Optional):它指定文档的版本号作为XML声明的一部分。
  • $encoding (Optional):它指定文档的编码作为XML声明的一部分。
  • $standalone (Optional):它指定文档是否独立。

返回值:如果成功,此函数将返回TRUE,否则将返回FALSE。

以下示例说明了PHP中的XMLWriter::startDocument()函数:

范例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('div'); 
  
// Add value to the element 
$writer->text('GeeksforGeeks'); 
  
// End the element 
$writer->endElement(); 
  
// End the document 
$writer->endDocument(); 
?>

输出:

<?xml version="1.0" encoding="UTF-8"?>
<div>GeeksforGeeks</div>

范例2:

<?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 h1 element 
$writer->startElement('h1'); 
    
// Start the style attribute 
$writer->startAttribute('style'); 
    
// Add value to the attribute 
$writer->text('color:orange;font-size:80px;'); 
    
// End the attribute 
$writer->endAttribute(); 
    
// Add value to the element 
$writer->text('GeeksforGeeks'); 
    
// End the element 
$writer->endElement(); 
    
// End the document 
$writer->endDocument(); 
?>

输出:

参考: https://www.php.net/manual/en/function.xmlwriter-start-document.php




相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | XMLWriter startDocument() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。