cvs: phpdoc-hu /reference/simplexml/functions simplexml-element-getDocNamespaces.xml
[email protected] ("Lajos Cseppent?")
| Newsgroups | php.doc.hu |
|---|---|
| Message-ID | <cvschappy1161516594@cvsserver> |
chappy Sun Oct 22 11:29:54 2006 UTC
Modified files:
/phpdoc-hu/reference/simplexml/functions
simplexml-element-getDocNamespaces.xml
Log:
sync
http://cvs.php.net/viewvc.cgi/phpdoc-hu/reference/simplexml/functions/simplexml-element-getDocNamespaces.xml?r1=1.2&r2=1.3&diff_format=u
Index: phpdoc-hu/reference/simplexml/functions/simplexml-element-getDocNamespaces.xml
diff -u phpdoc-hu/reference/simplexml/functions/simplexml-element-getDocNamespaces.xml:1.2 phpdoc-hu/reference/simplexml/functions/simplexml-element-getDocNamespaces.xml:1.3
--- phpdoc-hu/reference/simplexml/functions/simplexml-element-getDocNamespaces.xml:1.2 Sat Jun 10 11:08:02 2006
+++ phpdoc-hu/reference/simplexml/functions/simplexml-element-getDocNamespaces.xml Sun Oct 22 11:29:54 2006
@@ -1,18 +1,21 @@
<?xml version="1.0" encoding="iso-8859-2"?>
-<!-- EN-Revision: 1.6 Maintainer: chappy Status: ready -->
+<!-- EN-Revision: 1.7 Maintainer: chappy Status: ready -->
<refentry id='function.simplexml-element-getDocNamespaces'>
<refnamediv>
- <refname>SimpleXMLElement->getDocNamespaces</refname>
+ <refname>SimpleXMLElement->getDocNamespaces()</refname>
<refpurpose>
- Visszatér a dokumentumban deklarált névterekkel.
+ Visszatér a dokumentumban deklarált névterekkel
</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
- <methodsynopsis>
- <type>array</type><methodname>SimpleXMLElement->getDocNamespaces</methodname>
- <methodparam choice="opt"><type>bool</type><parameter>recursive</parameter></methodparam>
- </methodsynopsis>
+ <classsynopsis>
+ <ooclass><classname>SimpleXMLElement</classname></ooclass>
+ <methodsynopsis>
+ <type>array</type><methodname>SimpleXMLElement->getDocNamespaces</methodname>
+ <methodparam choice="opt"><type>bool</type><parameter>recursive</parameter></methodparam>
+ </methodsynopsis>
+ <classsynopsis>
<para>
Visszatér a dokumentumban deklarált névterekkel
</para>
@@ -60,7 +63,7 @@
</people>
XML;
-$sxe = new SimpleXMLElement($xml); // vagy a simplexml_load_string()-et használd
+$sxe = new SimpleXMLElement($xml);
$namespaces = $sxe->getDocNamespaces();
var_dump($namespaces);
@@ -87,7 +90,7 @@
</people>
XML;
-$sxe = new SimpleXMLElement($xml); // vagy a simplexml_load_string()-et használd
+$sxe = new SimpleXMLElement($xml);
$namespaces = $sxe->getDocNamespaces(TRUE);
var_dump($namespaces);
@@ -104,6 +107,7 @@
<para>
<simplelist>
<member><xref linkend="function.simplexml-element-getNamespaces" /></member>
+ <member><xref linkend="function.simplexml-element-registerXPathNamespace" /></member>
</simplelist>
</para>
</refsect1>