- Add doc for 2nd param

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@73397 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Derick Rethans 2002-03-15 18:51:56 +00:00
parent ddd8be30e4
commit d179bddb44

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.35 $ -->
<!-- $Revision: 1.36 $ -->
<reference id="ref.domxml">
<title>DOM XML functions</title>
<titleabbrev>DOM XML</titleabbrev>
@ -602,16 +602,24 @@ echo $doc->dumpmem();
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>string</type><methodname>domxml_dumpmem</methodname>
<methodparam><type>resource</type><parameter>doc</parameter></methodparam>
</methodsynopsis>
<methodsynopsis>
<type>string</type><methodname>domxml_dumpmem</methodname>
<methodparam><type>resource</type><parameter>doc</parameter></methodparam>
<methodparam choice="opt"><type>bool</type><parameter>format</parameter></methodparam>
</methodsynopsis>
&warn.experimental.func;
<para>
Creates an XML document from the dom representation. This function
usually is called after a building a new dom document from scratch
as in the example of <function>domxml_add_root</function>.
as in the example of <function>domxml_add_root</function>. The
<format>parameter</format> specifies whether the output should be neatly
formatted, or not.
</para>
<note>
<para>
The second parameter was added in PHP 4.3.0.
</para>
</note>
<para>
See also <function>domxml_add_root</function>
</para>