mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Fixes for 'missinginitializer' errors (I am new so I am uncertain about a standard other than var types, please advise.)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@333258 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
71ea998616
commit
2fbd7d72db
3 changed files with 5 additions and 5 deletions
|
@ -10,8 +10,8 @@
|
|||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>array</type><methodname>array_filter</methodname>
|
||||
<methodparam><type>array</type><parameter>array</parameter></methodparam>
|
||||
<methodparam choice="opt"><type>callable</type><parameter>callback</parameter></methodparam>
|
||||
<methodparam><type>array</type><parameter>array</parameter><initializer>array()</initializer></methodparam>
|
||||
<methodparam choice="opt"><type>callable</type><parameter>callback</parameter><initializer>Function()</initializer></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Iterates over each value in the <parameter>array</parameter>
|
||||
|
|
|
@ -4,14 +4,14 @@
|
|||
<refnamediv>
|
||||
<refname>array_keys</refname>
|
||||
<refpurpose>Return all the keys or a subset of the keys of an array</refpurpose>
|
||||
</refnamediv>
|
||||
</refnamediv>
|
||||
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>array</type><methodname>array_keys</methodname>
|
||||
<methodparam><type>array</type><parameter>array</parameter></methodparam>
|
||||
<methodparam choice="opt"><type>mixed</type><parameter>search_value</parameter></methodparam>
|
||||
<methodparam choice="opt"><type>mixed</type><parameter>search_value</parameter><initializer>""</initializer></methodparam>
|
||||
<methodparam choice="opt"><type>bool</type><parameter>strict</parameter><initializer>false</initializer></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<type>array</type><methodname>array_splice</methodname>
|
||||
<methodparam><type>array</type><parameter role="reference">input</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>int</initializer></methodparam>
|
||||
<methodparam choice="opt"><type>mixed</type><parameter>replacement</parameter><initializer>array()</initializer></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
|
|
Loading…
Reference in a new issue