Doc Bug #54749 - Missing default value for last parameter of mysqli_query - added MYSQLI_STORE_RESULT as default value for resultmode in signatures

http://lxr.php.net/opengrok/xref/PHP_5_3/ext/mysqli/mysqli_nonapi.c#492

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@311085 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
David Tajchreber 2011-05-16 15:21:38 +00:00
parent 56b50d5677
commit ff6f703135

View file

@ -13,14 +13,14 @@
<methodsynopsis>
<type>mixed</type><methodname>mysqli::query</methodname>
<methodparam><type>string</type><parameter>query</parameter></methodparam>
<methodparam choice='opt'><type>int</type><parameter>resultmode</parameter></methodparam>
<methodparam choice='opt'><type>int</type><parameter>resultmode</parameter><initializer>MYSQLI_STORE_RESULT</initializer></methodparam>
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>mixed</type><methodname>mysqli_query</methodname>
<methodparam><type>mysqli</type><parameter>link</parameter></methodparam>
<methodparam><type>string</type><parameter>query</parameter></methodparam>
<methodparam choice='opt'><type>int</type><parameter>resultmode</parameter></methodparam>
<methodparam choice='opt'><type>int</type><parameter>resultmode</parameter><initializer>MYSQLI_STORE_RESULT</initializer></methodparam>
</methodsynopsis>
<para>
Performs a <parameter>query</parameter> against the database.