mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
- 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:
parent
ddd8be30e4
commit
d179bddb44
1 changed files with 14 additions and 6 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue