當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP XMLWriter startCdata()用法及代碼示例


XMLWriter::startCdata()函數是PHP中的內置函數,用於啟動CDATA。然後需要使用XMLWriter::endCdata()函數關閉此元素。 CDATA是一個文本塊,無法被解析器解析,但是被識別為標記。

用法:

bool XMLWriter::startCdata( void )

參數:此函數不接受任何參數。



返回值:如果成功,此函數將返回TRUE,否則將返回FALSE。

以下示例說明了PHP中的XMLWriter::startCdata()函數:

範例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('h1'); 
  
// Start the Cdata 
$writer->startCdata(); 
  
// Add value to the Cdata 
$writer->text('value'); 
  
// End the Cdata 
$writer->endCdata(); 
  
// End the element 
$writer->endElement(); 
  
// End the document 
$writer->endDocument(); 
?>

輸出:

<?xml version="1.0" encoding="UTF-8"?>
<h1><![CDATA[value]]></h1>

範例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 element 
$writer->startElement('p'); 
  
// Start the Cdata 
$writer->startCdata(); 
  
// Add value to the Cdata which is not 
// going to be visible on the webpage 
$writer->text('This will be secret text,  
                 not visible in browser'); 
  
// End the Cdata 
$writer->endCdata(); 
  
// Add value to the element 
$writer->text('GeeksforGeeks, portal for 
                       Computer Science.'); 
  
// End the element 
$writer->endElement(); 
  
// End the document 
$writer->endDocument(); 
?>

輸出:

<?xml version="1.0" encoding="UTF-8"?>
<p><![CDATA[This will be secret text, not visible in browser]]>
    GeeksforGeeks, portal for Computer Science.
</p>

參考: https://www.php.net/manual/en/function.xmlwriter-start-cdata.php




相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | XMLWriter startCdata() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。