mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Added missing <optional> -tags.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@38498 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
870331f5f3
commit
5930a88458
2 changed files with 14 additions and 5 deletions
|
@ -232,7 +232,9 @@
|
|||
<funcprototype>
|
||||
<funcdef>string <function>bcsqrt</function></funcdef>
|
||||
<paramdef>string <parameter>operand</parameter></paramdef>
|
||||
<paramdef>int <parameter>scale</parameter></paramdef>
|
||||
<paramdef>int
|
||||
<optional><parameter>scale</parameter></optional>
|
||||
</paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
|
|
|
@ -271,12 +271,15 @@ $nextyear = mktime (0,0,0,date("m"), date("d"), date("Y")+1);
|
|||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>array <function>getdate</function></funcdef>
|
||||
<paramdef>int <parameter>timestamp</parameter></paramdef>
|
||||
<paramdef>int
|
||||
<optional><parameter>timestamp</parameter></optional>
|
||||
</paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Returns an associative array containing the date information of
|
||||
the <parameter>timestamp</parameter> as the following array
|
||||
the <parameter>timestamp</parameter>, or the current local time if
|
||||
no timestamp is given, as the following array
|
||||
elements:
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
|
@ -388,7 +391,9 @@ $nextyear = mktime (0,0,0,date("m"), date("d"), date("Y")+1);
|
|||
<funcprototype>
|
||||
<funcdef>string <function>gmdate</function></funcdef>
|
||||
<paramdef>string <parameter>format</parameter></paramdef>
|
||||
<paramdef>int <parameter>timestamp</parameter></paramdef>
|
||||
<paramdef>int
|
||||
<optional><parameter>timestamp</parameter></optional>
|
||||
</paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
|
@ -452,7 +457,9 @@ echo gmdate ("M d Y H:i:s", mktime (0,0,0,1,1,1998));
|
|||
<funcprototype>
|
||||
<funcdef>string <function>gmstrftime</function></funcdef>
|
||||
<paramdef>string <parameter>format</parameter></paramdef>
|
||||
<paramdef>int <parameter>timestamp</parameter></paramdef>
|
||||
<paramdef>int
|
||||
<optional><parameter>timestamp</parameter></optional>
|
||||
</paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
|
|
Loading…
Reference in a new issue