📜  PHP | XMLWriter startDocument()函数

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

PHP | XMLWriter startDocument()函数

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

句法:

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

参数:此函数接受三个参数,如上所述,如下所述:

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

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

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

示例 1:

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();
?>

输出:


GeeksforGeeks

示例 2:

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/函数.xmlwriter-start-document。 PHP