📜  PHP | XMLWriter endDtdEntity()函数

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

PHP | XMLWriter endDtdEntity()函数

XMLWriter::endDtdEntity()函数是PHP中的一个内置函数,用于结束当前的 DTD 实体。 DTD 代表文档类型定义,它定义了 XML 文档的结构以及合法元素和属性。 DTD 在网页上不可见,因为它们的行为类似于评论。实体用于定义特殊字符的快捷方式。

句法:

bool XMLWriter::endDtdEntity( void )

参数:此函数不接受任何参数。

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

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

示例 1:

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

输出:


示例 2:

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/函数.xmlwriter-end-dtd-entity。 PHP