localtime description fix

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@255107 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Stanislav Malyshev 2008-03-15 00:31:26 +00:00
parent a41d180148
commit 0540c0d9b4

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<refentry xml:id="dateformatter.localtime" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>DateFormatter::localtime</refname>
@ -16,7 +16,6 @@
<methodsynopsis>
<type>array</type><methodname>localtime</methodname>
<methodparam><type>string</type><parameter>value</parameter></methodparam>
<methodparam><type>array</type><parameter>localtime</parameter></methodparam>
<methodparam><type>integer</type><parameter>parse_pos</parameter></methodparam>
</methodsynopsis>
</classsynopsis>
@ -27,7 +26,6 @@
<type>array</type><methodname>datefmt_localtime</methodname>
<methodparam><type>DateFormatter</type><parameter>fmt</parameter></methodparam>
<methodparam><type>string</type><parameter>value</parameter></methodparam>
<methodparam><type>array</type><parameter>localtime</parameter></methodparam>
<methodparam><type>integer</type><parameter>parse_pos</parameter></methodparam>
</methodsynopsis>
<para>
@ -56,14 +54,6 @@ $parse_pos and consuming as much of the input value as possible.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>localtime</parameter></term>
<listitem>
<para>
The array to store the parsed value; values in this array will.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>parse_pos</parameter></term>
<listitem>
@ -83,7 +73,7 @@ $parse_pos and consuming as much of the input value as possible.
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Localtime compatible array of integers
Localtime compatible array of integers : contains 24 hour clock value in tm_hour field
</para>
</refsect1>
@ -129,7 +119,7 @@ if ($arr) {
&example.outputs;
<screen>
<![CDATA[
First parsed output is tm_sec : 0 , tm_min : 0 , tm_hour : 4 , tm_year : 1969 ,
First parsed output is tm_sec : 0 , tm_min : 0 , tm_hour : 16 , tm_year : 1969 ,
tm_mday : 31 , tm_wday : 4 , tm_yday : 365 , tm_mon : 11 , tm_isdst : 0 ,
]]>
</screen>