mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
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:
parent
56b50d5677
commit
ff6f703135
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue