PHP | XMLWriter endDtd()函数
XMLWriter::endDtd()函数是PHP中的一个内置函数,用于结束使用XMLWriter::startDtd()函数启动的当前 DTD。 DTD 代表文档类型定义,它定义了 XML 文档的结构以及合法元素和属性。 DTD 在网页中不可见,因为它们的行为类似于评论。
句法:
bool XMLWriter::endDtd( void )
参数:此函数不接受任何参数。
返回值:此函数在成功时返回 TRUE,在失败时返回 FALSE。
下面的示例说明了PHP中的XMLWriter::endDtd()函数:
示例 1:
openURI('php://output');
// Start the document
$writer->startDocument('1.0', 'UTF-8');
// Start the Dtd
$writer->startDtd('my_dtd');
// End the Dtd
$writer->endDtd();
// End the document
$writer->endDocument();
?>
输出:按 Ctrl+U 查看 XML
示例 2:
openURI('php://output');
// Start the document
$writer->startDocument('1.0', 'UTF-8');
// Start the Dtd
$writer->startDtd('my_dtd_which_is_not_visible');
// End the Dtd
$writer->endDtd();
// Write a text to document
$writer->text('This is XMLWriter.');
// End the document
$writer->endDocument();
?>
输出:
This is XMLWriter.
参考: https://www. PHP.net/manual/en/函数.xmlwriter-end-dtd。 PHP