document the changes to get more w3c compliance

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@92606 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Christian Stocker 2002-08-19 14:15:06 +00:00
parent e188b24eab
commit 12145533cf
5 changed files with 21 additions and 5 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.28 -->
<refentry id='function.DomElement-get-attribute'>
<refnamediv>
@ -17,6 +17,10 @@
<para>
Returns the attribute with name <parameter>name</parameter> of the
current node.
</para>
<para>
(PHP &gt;= 4.3 only) If no attribute with given name is found, an empty
string is returned.
</para>
<para>
See also <function>DomElement_set_attribute</function>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id='function.DomNode-attributes'>
<refnamediv>
@ -18,6 +18,9 @@
This function only returns an array of attributes if the node is of
type XML_ELEMENT_NODE.
</para>
<para>
(PHP &gt;= 4.3 only) If no attributes are found, NULL is returned.
</para>
</refsect1>
</refentry>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id='function.DomNode-first-child'>
<refnamediv>
@ -17,6 +17,9 @@
<para>
Returns the first child of the node.
</para>
<para>
(PHP &gt;= 4.3 only) If no first child is found, NULL is returned.
</para>
<para>
See also <function>DomNode_last_child</function>,
<function>DomNode_next_sibling</function>,

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id='function.DomNode-last-child'>
<refnamediv>
@ -17,6 +17,9 @@
<para>
Returns the last child of the node.
</para>
<para>
(PHP &gt;= 4.3 only) If no lasat child is found, NULL is returned.
</para>
<para>
See also <function>DomNode_first_child</function>,
<function>DomNode_next_sibling</function>,

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
<refentry id='function.DomNode-parent-node'>
<refnamediv>
@ -17,6 +17,9 @@
<para>
This function returns the parent node.
</para>
<para>
(PHP &gt;= 4.3 only) If no parent is found, NULL is returned.
</para>
<para>
The following example will show two identical lists of children.
<example>