didou Fri Dec 29 00:57:01 2006 UTC
Modified files:
/phpdoc/en/reference/dom/functions dom-domdocument-load.xml
Log:
Fix #39057: Loose the static call
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/dom/functions/dom-domdocument-load.xml?r1=1.10&r2=1.11&diff_format=u
Index: phpdoc/en/reference/dom/functions/dom-domdocument-load.xml
diff -u phpdoc/en/reference/dom/functions/dom-domdocument-load.xml:1.10
phpdoc/en/reference/dom/functions/dom-domdocument-load.xml:1.11
--- phpdoc/en/reference/dom/functions/dom-domdocument-load.xml:1.10 Tue May
16 03:10:13 2006
+++ phpdoc/en/reference/dom/functions/dom-domdocument-load.xml Fri Dec 29
00:57:01 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.10 $ -->
+<!-- $Revision: 1.11 $ -->
<refentry id="function.dom-domdocument-load">
<refnamediv>
<refname>DOMDocument->load()</refname>
@@ -20,12 +20,6 @@
<para>
Loads an XML document from a file.
</para>
- <para>
- This method may also be called statically to load and create a
- <classname>DOMDocument</classname> object. The static invocation may be
- used when no <classname>DOMDocument</classname> properties need to be set
- prior to loading.
- </para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
@@ -64,19 +58,6 @@
</programlisting>
</example>
</para>
- <para>
- <example>
- <title>Static invocation of <literal>load</literal></title>
- <programlisting role="php">
-<![CDATA[
-<?php
-$doc = DOMDocument::load('book.xml');
-echo $doc->saveXML();
-?>
-]]>
- </programlisting>
- </example>
- </para>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;