PHP
downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

XMLWriter::outputMemory> <XMLWriter::openMemory
Last updated: Fri, 30 Jan 2009

view this page in

XMLWriter::openURI

(No version information available, might be only in CVS)

XMLWriter::openURIソース URI を指定して新しい xmlwriter を作成する

説明

オブジェクト指向型

XMLWriter
bool openURI ( string $uri )

手続き型

resource xmlwriter_open_uri ( string $uri )

uri を指定した新しい XMLWriter を作成します。

パラメータ

uri

出力するリソースの URI。

返り値

オブジェクト指向型: 成功した場合に TRUE を、失敗した場合に FALSE を返します。

手続き型: 成功した場合に、その後の xmlwriter 関数で使用するための新しい xmlwriter リソース、 エラーの場合に FALSE を返します。



add a note add a note User Contributed Notes
XMLWriter::openURI
yankee at ignorethis dot cipher DASH code dot de
19-Nov-2007 08:46
Want to write xml-data directly to the user instead of memory or file?
This will do:
<?php
$out
=new XMLWriter();
$out->openURI('php://output');
?>

XMLWriter::outputMemory> <XMLWriter::openMemory
Last updated: Fri, 30 Jan 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites