mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
ws
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@188228 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
13156130e1
commit
a50a655ee0
3 changed files with 73 additions and 77 deletions
|
@ -1,27 +1,26 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
|
||||
<refentry id='function.domattribute-name'>
|
||||
<refnamediv>
|
||||
<refname>DomAttribute->name</refname>
|
||||
<refpurpose>
|
||||
Returns name of attribute
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>string</type><methodname>DomAttribute->name</methodname>
|
||||
<void/>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
This function returns the name of the attribute.
|
||||
</para>
|
||||
<para>
|
||||
See also <function>domattribute_value</function> for an example.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<refentry id='function.domattribute-name'>
|
||||
<refnamediv>
|
||||
<refname>DomAttribute->name</refname>
|
||||
<refpurpose>
|
||||
Returns name of attribute
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>string</type><methodname>DomAttribute->name</methodname>
|
||||
<void/>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
This function returns the name of the attribute.
|
||||
</para>
|
||||
<para>
|
||||
See also <function>domattribute_value</function> for an example.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
|
|
|
@ -1,24 +1,23 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
|
||||
<refentry id='function.domattribute-specified'>
|
||||
<refnamediv>
|
||||
<refname>DomAttribute->specified</refname>
|
||||
<refpurpose>
|
||||
Checks if attribute is specified
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>DomAttribute->specified</methodname>
|
||||
<void/>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Check DOM standard for a detailed explanation.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
<!-- $Revision: 1.5 $ -->
|
||||
<refentry id='function.domattribute-specified'>
|
||||
<refnamediv>
|
||||
<refname>DomAttribute->specified</refname>
|
||||
<refpurpose>
|
||||
Checks if attribute is specified
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>DomAttribute->specified</methodname>
|
||||
<void/>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Check DOM standard for a detailed explanation.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
|
|
|
@ -1,26 +1,25 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<!-- splitted from ./en/functions/domxml.xml, last change in rev 1.38 -->
|
||||
<refentry id='function.domattribute-value'>
|
||||
<refnamediv>
|
||||
<refname>DomAttribute->value</refname>
|
||||
<refpurpose>
|
||||
Returns value of attribute
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>mixed</type><methodname>DomAttribute->value</methodname>
|
||||
<void/>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
This function returns the value of the attribute.
|
||||
</para>
|
||||
<para>
|
||||
<example>
|
||||
<title>Getting all the attributes of a node</title>
|
||||
<programlisting role="php">
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<refentry id='function.domattribute-value'>
|
||||
<refnamediv>
|
||||
<refname>DomAttribute->value</refname>
|
||||
<refpurpose>
|
||||
Returns value of attribute
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>mixed</type><methodname>DomAttribute->value</methodname>
|
||||
<void/>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
This function returns the value of the attribute.
|
||||
</para>
|
||||
<para>
|
||||
<example>
|
||||
<title>Getting all the attributes of a node</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
|
||||
|
@ -40,23 +39,22 @@ foreach ($attrs as $attribute) {
|
|||
}
|
||||
|
||||
?>
|
||||
|
||||
]]>
|
||||
</programlisting>
|
||||
&example.outputs;
|
||||
<screen>
|
||||
</programlisting>
|
||||
&example.outputs;
|
||||
<screen>
|
||||
<![CDATA[
|
||||
Attributes of chapter
|
||||
- language : en
|
||||
]]>
|
||||
</screen>
|
||||
</example>
|
||||
</para>
|
||||
<para>
|
||||
See also <function>domattribute_name</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
</screen>
|
||||
</example>
|
||||
</para>
|
||||
<para>
|
||||
See also <function>domattribute_name</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
|
|
Loading…
Reference in a new issue