PHP | XMLWriter openUri()函数
XMLWriter::openUri()函数是PHP中的一个内置函数,用于使用源 URI 创建一个新的 XMLWriter 进行输出。简单来说,这个函数决定了如何将 XML 输出给用户,它可以通过浏览器或直接输出到文件。
句法:
bool XMLWriter::openUri( string $uri )
参数:此函数接受单个参数$uri ,它保存用于输出的 uri。
返回值:此函数在成功时返回 TRUE,在失败时返回 FALSE。
下面的示例说明了PHP中的XMLWriter::openUri()函数:
示例 1:
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:
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/函数.xmlwriter-open-uri。 PHP