Fixed missing initializers

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@323350 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Maciek Sokolewicz 2012-02-18 20:02:26 +00:00
parent 6230e6c0d5
commit ce8212a9d0
6 changed files with 8 additions and 8 deletions

View file

@ -11,7 +11,7 @@
<methodsynopsis>
<type>array</type><methodname>array_filter</methodname>
<methodparam><type>array</type><parameter>input</parameter></methodparam>
<methodparam choice="opt"><type>callback</type><parameter>callback</parameter></methodparam>
<methodparam choice="opt"><type>callback</type><parameter>callback</parameter><initializer>""</initializer></methodparam>
</methodsynopsis>
<para>
Iterates over each value in

View file

@ -11,7 +11,7 @@
<methodsynopsis>
<type>array</type><methodname>array_keys</methodname>
<methodparam><type>array</type><parameter>input</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>search_value</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>search_value</parameter><initializer>&null;</initializer></methodparam>
<methodparam choice="opt"><type>bool</type><parameter>strict</parameter><initializer>false</initializer></methodparam>
</methodsynopsis>
<para>
@ -60,7 +60,7 @@
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Returns an array of all the keys in <parameter>input</parameter>.
Returns an array of all the keys in 1212 <parameter>input</parameter>.
</para>
</refsect1>

View file

@ -11,7 +11,7 @@
<type>array</type><methodname>array_slice</methodname>
<methodparam><type>array</type><parameter>array</parameter></methodparam>
<methodparam><type>int</type><parameter>offset</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>length</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>length</parameter><initializer>&null;</initializer></methodparam>
<methodparam choice="opt"><type>bool</type><parameter>preserve_keys</parameter><initializer>false</initializer></methodparam>
</methodsynopsis>
<para>
@ -66,7 +66,7 @@
<listitem>
<para>
Note that <function>array_slice</function> will reorder and reset the
array indices by default. You can change this behaviour by setting
numeric array indices by default. You can change this behaviour by setting
<parameter>preserve_keys</parameter> to &true;.
</para>
</listitem>

View file

@ -11,7 +11,7 @@
<type>bool</type><methodname>array_walk_recursive</methodname>
<methodparam><type>array</type><parameter role="reference">input</parameter></methodparam>
<methodparam><type>callback</type><parameter>funcname</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>userdata</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>userdata</parameter><initializer>&null;</initializer></methodparam>
</methodsynopsis>
<para>
Applies the user-defined function <parameter>funcname</parameter> to each

View file

@ -11,7 +11,7 @@
<type>bool</type><methodname>array_walk</methodname>
<methodparam><type>array</type><parameter role="reference">array</parameter></methodparam>
<methodparam><type>callback</type><parameter>funcname</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>userdata</parameter></methodparam>
<methodparam choice="opt"><type>mixed</type><parameter>userdata</parameter><initializer>&null;</initializer></methodparam>
</methodsynopsis>
<simpara>
Applies the user-defined function <parameter>funcname</parameter> to each

View file

@ -11,7 +11,7 @@
<type>int</type><methodname>extract</methodname>
<methodparam><type>array</type><parameter role="reference">var_array</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>extract_type</parameter><initializer>EXTR_OVERWRITE</initializer></methodparam>
<methodparam choice="opt"><type>string</type><parameter>prefix</parameter></methodparam>
<methodparam choice="opt"><type>string</type><parameter>prefix</parameter><initializer>&null;</initializer></methodparam>
</methodsynopsis>
<para>
Import variables from an array into the current symbol table.