XMLWriter::endDtdEntity()函数是PHP中的一个内置函数,用于结束当前DTD实体。 DTD代表“文档类型定义”,它定义了XML文档的结构以及法律元素和属性。 DTD在网页上不可见,因为它们的作用类似于注释。实体用于定义特殊字符的快捷方式。
用法:
bool XMLWriter::endDtdEntity( void )
参数:此函数不接受任何参数。
返回值:如果成功,此函数将返回TRUE,否则将返回FALSE。
以下示例说明了PHP中的XMLWriter::endDtdEntity()函数:
范例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 the Dtd Entity
$writer->startDtdEntity('entity', true);
// End the Dtd Entity
$writer->endDtdEntity();
// End the document
$writer->endDocument();
?>
输出:
<?xml version="1.0" encoding="UTF-8"?> <!ENTITY % entity>
范例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 the Dtd Entity which is
// not going to be visible
$writer->startDtdEntity('entity', true);
// End the Dtd Entity
$writer->endDtdEntity();
// Start a h1 element
$writer->startElement('h1');
// Add a style attribute
$writer->writeAttribute('style',
'color:blue;font-size:100;');
// Add text to the element
$writer->text('GeeksforGeeks');
// End the element
$writer->endElement();
// End the document
$writer->endDocument();
?>
输出:
参考: https://www.php.net/manual/en/function.xmlwriter-end-dtd-entity.php
相关用法
- PHP XMLWriter startDocument()用法及代码示例
- PHP XMLWriter startComment()用法及代码示例
- PHP XMLWriter startCdata()用法及代码示例
- PHP XMLWriter endElement()用法及代码示例
- PHP XMLWriter openUri()用法及代码示例
- PHP XMLWriter setIndent()用法及代码示例
- PHP XMLWriter fullEndElement()用法及代码示例
- PHP XMLWriter startAttributeNs()用法及代码示例
- PHP XMLWriter endPi()用法及代码示例
- PHP XMLWriter startAttribute()用法及代码示例
- PHP XMLWriter endComment()用法及代码示例
- PHP XMLWriter startDtdAttlist()用法及代码示例
- PHP XMLWriter endDocument()用法及代码示例
- PHP XMLWriter endCdata()用法及代码示例
- PHP XMLWriter endAttribute()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | XMLWriter endDtdEntity() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。