Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions reference/mysqli/functions/mysqli-get-client-stats.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>array</type><methodname>mysqli_get_client_stats</methodname>
<void/>
<type class="union"><type>array</type><type>false</type></type><methodname>mysqli_get_client_stats</methodname>
<void />
</methodsynopsis>
<para>
Returns client per-process statistics.
Expand Down
2 changes: 1 addition & 1 deletion reference/mysqli/mysqli/construct.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<methodparam choice="opt"><type>string</type><parameter>socket</parameter><initializer>ini_get("mysqli.default_socket")</initializer></methodparam>
</constructorsynopsis>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>void</type><methodname>mysqli::connect</methodname>
<modifier>public</modifier> <type class="union"><type>mysqli</type><type>false</type></type><methodname>mysqli::connect</methodname>
<methodparam choice="opt"><type>string</type><parameter>host</parameter><initializer>ini_get("mysqli.default_host")</initializer></methodparam>
<methodparam choice="opt"><type>string</type><parameter>username</parameter><initializer>ini_get("mysqli.default_user")</initializer></methodparam>
<methodparam choice="opt"><type>string</type><parameter>passwd</parameter><initializer>ini_get("mysqli.default_pw")</initializer></methodparam>
Expand Down
6 changes: 3 additions & 3 deletions reference/mysqli/mysqli/get-connection-stats.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>bool</type><methodname>mysqli::get_connection_stats</methodname>
<void/>
<modifier>public</modifier> <type class="union"><type>array</type><type>false</type></type><methodname>mysqli::get_connection_stats</methodname>
<void />
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>array</type><methodname>mysqli_get_connection_stats</methodname>
<type class="union"><type>array</type><type>false</type></type><methodname>mysqli_get_connection_stats</methodname>
<methodparam><type>mysqli</type><parameter>link</parameter></methodparam>
</methodsynopsis>
<para>
Expand Down
2 changes: 1 addition & 1 deletion reference/mysqli/mysqli/insert-id.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<fieldsynopsis><type>mixed</type><varname linkend="mysqli.insert-id">mysqli->insert_id</varname></fieldsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>mixed</type><methodname>mysqli_insert_id</methodname>
<type class="union"><type>int</type><type>string</type></type><methodname>mysqli_insert_id</methodname>
<methodparam><type>mysqli</type><parameter>link</parameter></methodparam>
</methodsynopsis>
<para>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli/poll.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <modifier>static</modifier> <type>int</type><methodname>mysqli::poll</methodname>
<modifier>public</modifier> <modifier>static</modifier> <type class="union"><type>int</type><type>false</type></type><methodname>mysqli::poll</methodname>
<methodparam><type>array</type><parameter role="reference">read</parameter></methodparam>
<methodparam><type>array</type><parameter role="reference">error</parameter></methodparam>
<methodparam><type>array</type><parameter role="reference">reject</parameter></methodparam>
Expand All @@ -20,7 +20,7 @@
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>int</type><methodname>mysqli_poll</methodname>
<type class="union"><type>int</type><type>false</type></type><methodname>mysqli_poll</methodname>
<methodparam><type>array</type><parameter role="reference">read</parameter></methodparam>
<methodparam><type>array</type><parameter role="reference">error</parameter></methodparam>
<methodparam><type>array</type><parameter role="reference">reject</parameter></methodparam>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli/prepare.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>mysqli_stmt</type><methodname>mysqli::prepare</methodname>
<modifier>public</modifier> <type class="union"><type>mysqli_stmt</type><type>false</type></type><methodname>mysqli::prepare</methodname>
<methodparam><type>string</type><parameter>query</parameter></methodparam>
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>mysqli_stmt</type><methodname>mysqli_prepare</methodname>
<type class="union"><type>mysqli_stmt</type><type>false</type></type><methodname>mysqli_prepare</methodname>
<methodparam><type>mysqli</type><parameter>link</parameter></methodparam>
<methodparam><type>string</type><parameter>query</parameter></methodparam>
</methodsynopsis>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli/query.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>mixed</type><methodname>mysqli::query</methodname>
<modifier>public</modifier> <type class="union"><type>mysqli_result</type><type>bool</type></type><methodname>mysqli::query</methodname>
<methodparam><type>string</type><parameter>query</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>
<type class="union"><type>mysqli_result</type><type>bool</type></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><initializer>MYSQLI_STORE_RESULT</initializer></methodparam>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli/reap-async-query.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>mysqli_result</type><methodname>mysqli::reap_async_query</methodname>
<modifier>public</modifier> <type class="union"><type>mysqli_result</type><type>false</type></type><methodname>mysqli::reap_async_query</methodname>
<void />
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>mysqli_result</type><methodname>mysqli_reap_async_query</methodname>
<type class="union"><type>mysqli_result</type><type>false</type></type><methodname>mysqli_reap_async_query</methodname>
<methodparam><type>mysqli</type><parameter>link</parameter></methodparam>
</methodsynopsis>
<para>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli/stat.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>string</type><methodname>mysqli::stat</methodname>
<modifier>public</modifier> <type class="union"><type>string</type><type>false</type></type><methodname>mysqli::stat</methodname>
<void />
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>string</type><methodname>mysqli_stat</methodname>
<type class="union"><type>string</type><type>false</type></type><methodname>mysqli_stat</methodname>
<methodparam><type>mysqli</type><parameter>link</parameter></methodparam>
</methodsynopsis>
<para>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli/store-result.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>mysqli_result</type><methodname>mysqli::store_result</methodname>
<modifier>public</modifier> <type class="union"><type>mysqli_result</type><type>false</type></type><methodname>mysqli::store_result</methodname>
<methodparam choice="opt"><type>int</type><parameter>option</parameter></methodparam>
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>mysqli_result</type><methodname>mysqli_store_result</methodname>
<type class="union"><type>mysqli_result</type><type>false</type></type><methodname>mysqli_store_result</methodname>
<methodparam><type>mysqli</type><parameter>link</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>option</parameter></methodparam>
</methodsynopsis>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli/use-result.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>mysqli_result</type><methodname>mysqli::use_result</methodname>
<modifier>public</modifier> <type class="union"><type>mysqli_result</type><type>false</type></type><methodname>mysqli::use_result</methodname>
<void />
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>mysqli_result</type><methodname>mysqli_use_result</methodname>
<type class="union"><type>mysqli_result</type><type>false</type></type><methodname>mysqli_use_result</methodname>
<methodparam><type>mysqli</type><parameter>link</parameter></methodparam>
</methodsynopsis>
<para>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli_result/fetch-all.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>mixed</type><methodname>mysqli_result::fetch_all</methodname>
<modifier>public</modifier> <type>array</type><methodname>mysqli_result::fetch_all</methodname>
<methodparam choice="opt"><type>int</type><parameter>resulttype</parameter><initializer>MYSQLI_NUM</initializer></methodparam>
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>mixed</type><methodname>mysqli_fetch_all</methodname>
<type>array</type><methodname>mysqli_fetch_all</methodname>
<methodparam><type>mysqli_result</type><parameter>result</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>resulttype</parameter><initializer>MYSQLI_NUM</initializer></methodparam>
</methodsynopsis>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli_result/fetch-array.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>mixed</type><methodname>mysqli_result::fetch_array</methodname>
<modifier>public</modifier> <type class="union"><type>array</type><type>null</type></type><methodname>mysqli_result::fetch_array</methodname>
<methodparam choice="opt"><type>int</type><parameter>resulttype</parameter><initializer>MYSQLI_BOTH</initializer></methodparam>
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>mixed</type><methodname>mysqli_fetch_array</methodname>
<type class="union"><type>array</type><type>null</type></type><methodname>mysqli_fetch_array</methodname>
<methodparam><type>mysqli_result</type><parameter>result</parameter></methodparam>
<methodparam choice="opt"><type>int</type><parameter>resulttype</parameter><initializer>MYSQLI_BOTH</initializer></methodparam>
</methodsynopsis>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli_result/fetch-assoc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>array</type><methodname>mysqli_result::fetch_assoc</methodname>
<modifier>public</modifier> <type class="union"><type>string[]</type><type>null</type></type><methodname>mysqli_result::fetch_assoc</methodname>
<void />
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>array</type><methodname>mysqli_fetch_assoc</methodname>
<type class="union"><type>string[]</type><type>null</type></type><methodname>mysqli_fetch_assoc</methodname>
<methodparam><type>mysqli_result</type><parameter>result</parameter></methodparam>
</methodsynopsis>
<para>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli_result/fetch-field-direct.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>object</type><methodname>mysqli_result::fetch_field_direct</methodname>
<modifier>public</modifier> <type class="union"><type>object</type><type>false</type></type><methodname>mysqli_result::fetch_field_direct</methodname>
<methodparam><type>int</type><parameter>fieldnr</parameter></methodparam>
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>object</type><methodname>mysqli_fetch_field_direct</methodname>
<type class="union"><type>object</type><type>false</type></type><methodname>mysqli_fetch_field_direct</methodname>
<methodparam><type>mysqli_result</type><parameter>result</parameter></methodparam>
<methodparam><type>int</type><parameter>fieldnr</parameter></methodparam>
</methodsynopsis>
Expand Down
6 changes: 3 additions & 3 deletions reference/mysqli/mysqli_result/fetch-field.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>object</type><methodname>mysqli_result::fetch_field</methodname>
<void/>
<modifier>public</modifier> <type class="union"><type>object</type><type>false</type></type><methodname>mysqli_result::fetch_field</methodname>
<void />
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>object</type><methodname>mysqli_fetch_field</methodname>
<type class="union"><type>object</type><type>false</type></type><methodname>mysqli_fetch_field</methodname>
<methodparam><type>mysqli_result</type><parameter>result</parameter></methodparam>
</methodsynopsis>
<para>
Expand Down
6 changes: 3 additions & 3 deletions reference/mysqli/mysqli_result/fetch-fields.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>array</type><methodname>mysqli_result::fetch_fields</methodname>
<void/>
<modifier>public</modifier> <type class="union"><type>array</type><type>false</type></type><methodname>mysqli_result::fetch_fields</methodname>
<void />
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>array</type><methodname>mysqli_fetch_fields</methodname>
<type class="union"><type>array</type><type>false</type></type><methodname>mysqli_fetch_fields</methodname>
<methodparam><type>mysqli_result</type><parameter>result</parameter></methodparam>
</methodsynopsis>

Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli_result/fetch-object.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>object</type><methodname>mysqli_result::fetch_object</methodname>
<modifier>public</modifier> <type class="union"><type>object</type><type>null</type></type><methodname>mysqli_result::fetch_object</methodname>
<methodparam choice="opt"><type>string</type><parameter>class_name</parameter><initializer>"stdClass"</initializer></methodparam>
<methodparam choice="opt"><type>array</type><parameter>params</parameter></methodparam>
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>object</type><methodname>mysqli_fetch_object</methodname>
<type class="union"><type>object</type><type>null</type></type><methodname>mysqli_fetch_object</methodname>
<methodparam><type>mysqli_result</type><parameter>result</parameter></methodparam>
<methodparam choice="opt"><type>string</type><parameter>class_name</parameter><initializer>"stdClass"</initializer></methodparam>
<methodparam choice="opt"><type>array</type><parameter>params</parameter></methodparam>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli_result/fetch-row.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>mixed</type><methodname>mysqli_result::fetch_row</methodname>
<modifier>public</modifier> <type class="union"><type>array</type><type>null</type></type><methodname>mysqli_result::fetch_row</methodname>
<void />
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>mixed</type><methodname>mysqli_fetch_row</methodname>
<type class="union"><type>array</type><type>null</type></type><methodname>mysqli_fetch_row</methodname>
<methodparam><type>mysqli_result</type><parameter>result</parameter></methodparam>
</methodsynopsis>
<para>
Expand Down
2 changes: 1 addition & 1 deletion reference/mysqli/mysqli_result/lengths.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<fieldsynopsis><type>array</type><varname linkend="mysqli-result.lengths">mysqli_result->lengths</varname></fieldsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>array</type><methodname>mysqli_fetch_lengths</methodname>
<type class="union"><type>int[]</type><type>false</type></type><methodname>mysqli_fetch_lengths</methodname>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am seriously not keen on introducing such a hack when we have no official syntax for array shapes. Moreover, you can pass it an array and it will certainly not type error, at "best" it will ValueError in PHP 8.0, at "worst" it will ignore the miss match of types and will coerce them implicitly. As the internal behaviour of extensions dealing with shapes is widely inconsistent this is a -1 in my eyes.

<methodparam><type>mysqli_result</type><parameter>result</parameter></methodparam>
</methodsynopsis>
<para>
Expand Down
2 changes: 1 addition & 1 deletion reference/mysqli/mysqli_stmt/affected-rows.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<fieldsynopsis><type>int</type><varname linkend="mysqli-stmt.affected-rows">mysqli_stmt->affected_rows</varname></fieldsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>int</type><methodname>mysqli_stmt_affected_rows</methodname>
<type class="union"><type>int</type><type>string</type></type><methodname>mysqli_stmt_affected_rows</methodname>
<methodparam><type>mysqli_stmt</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli_stmt/attr-get.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>int</type><methodname>mysqli_stmt::attr_get</methodname>
<modifier>public</modifier> <type class="union"><type>int</type><type>false</type></type><methodname>mysqli_stmt::attr_get</methodname>
<methodparam><type>int</type><parameter>attr</parameter></methodparam>
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>int</type><methodname>mysqli_stmt_attr_get</methodname>
<type class="union"><type>int</type><type>false</type></type><methodname>mysqli_stmt_attr_get</methodname>
<methodparam><type>mysqli_stmt</type><parameter>stmt</parameter></methodparam>
<methodparam><type>int</type><parameter>attr</parameter></methodparam>
</methodsynopsis>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli_stmt/fetch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>bool</type><methodname>mysqli_stmt::fetch</methodname>
<modifier>public</modifier> <type class="union"><type>bool</type><type>null</type></type><methodname>mysqli_stmt::fetch</methodname>
<void />
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>bool</type><methodname>mysqli_stmt_fetch</methodname>
<type class="union"><type>bool</type><type>null</type></type><methodname>mysqli_stmt_fetch</methodname>
<methodparam><type>mysqli_stmt</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli_stmt/get-result.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>mysqli_result</type><methodname>mysqli_stmt::get_result</methodname>
<modifier>public</modifier> <type class="union"><type>mysqli_result</type><type>false</type></type><methodname>mysqli_stmt::get_result</methodname>
<void />
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>mysqli_result</type><methodname>mysqli_stmt_get_result</methodname>
<type class="union"><type>mysqli_result</type><type>false</type></type><methodname>mysqli_stmt_get_result</methodname>
<methodparam><type>mysqli_stmt</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
Expand Down
2 changes: 1 addition & 1 deletion reference/mysqli/mysqli_stmt/prepare.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>mixed</type><methodname>mysqli_stmt::prepare</methodname>
<modifier>public</modifier> <type>bool</type><methodname>mysqli_stmt::prepare</methodname>
<methodparam><type>string</type><parameter>query</parameter></methodparam>
</methodsynopsis>
<para>&style.procedural;</para>
Expand Down
4 changes: 2 additions & 2 deletions reference/mysqli/mysqli_stmt/result-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
&reftitle.description;
<para>&style.oop;</para>
<methodsynopsis role="oop">
<modifier>public</modifier> <type>mysqli_result</type><methodname>mysqli_stmt::result_metadata</methodname>
<modifier>public</modifier> <type class="union"><type>mysqli_result</type><type>false</type></type><methodname>mysqli_stmt::result_metadata</methodname>
<void />
</methodsynopsis>
<para>&style.procedural;</para>
<methodsynopsis>
<type>mysqli_result</type><methodname>mysqli_stmt_result_metadata</methodname>
<type class="union"><type>mysqli_result</type><type>false</type></type><methodname>mysqli_stmt_result_metadata</methodname>
<methodparam><type>mysqli_stmt</type><parameter>stmt</parameter></methodparam>
</methodsynopsis>
<para>
Expand Down