当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP XMLWriter openUri()用法及代码示例


XMLWriter::openUri()函数是PHP中的内置函数,可用于使用源URI创建新的XMLWriter,以进行输出。简而言之,此函数决定了如何通过浏览器或直接将XML输出给用户。

用法:

bool XMLWriter::openUri( string $uri )

参数:该函数接受单个参数$uri,该参数保存uri用于输出。



返回值:如果成功,此函数将返回TRUE,否则将返回FALSE。

以下示例说明了PHP中的XMLWriter::openUri()函数:

范例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('i'); 
   
// Add value to the element 
$writer->text('GeeksforGeeks'); 
   
// End the element 
$writer->endElement(); 
   
// End the document 
$writer->endDocument(); 
?>

输出:

GeeksforGeeks

范例2:

<?php 
  
// Create a new XMLWriter instance 
$writer = new XMLWriter(); 
   
// Create the output stream to a file 
$writer->openURI('new.xml'); 
   
// Start the document 
$writer->startDocument('1.0', 'UTF-8'); 
   
// Start a element 
$writer->startElement('div'); 
   
// Add value to the element 
$writer->text('Hello World'); 
   
// End the element 
$writer->endElement(); 
   
// End the document 
$writer->endDocument(); 
?>

输出:这将在具有以下内容的同一文件夹中创建一个名为new.xml的新文件。

参考: https://www.php.net/manual/en/function.xmlwriter-open-uri.php




相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | XMLWriter openUri() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。