Clean up all mysqli aliases removed in PHP 5.4

Closes GH-499.
This commit is contained in:
Kamil Tekiela 2021-03-20 22:09:20 +00:00 committed by Christoph M. Becker
parent 9c9b8f3e66
commit 4f006f632a
2 changed files with 8 additions and 10 deletions

View file

@ -99,7 +99,6 @@ Current character set is latin1_swedish_ci
<para>
<simplelist>
<member><function>mysqli_set_charset</function></member>
<member><function>mysqli_client_encoding</function></member>
<member><function>mysqli_real_escape_string</function></member>
</simplelist>
</para>

View file

@ -133,10 +133,9 @@
<entry>Changes the user of the specified database connection</entry>
</row>
<row>
<entry><methodname>mysqli::character_set_name</methodname>,<link linkend="mysqli.character-set-name">
mysqli::client_encoding</link></entry>
<entry><methodname>mysqli::character_set_name</methodname></entry>
<entry><function>mysqli_character_set_name</function></entry>
<entry><function>mysqli_client_encoding</function></entry>
<entry>N/A</entry>
<entry>Returns the default character set for the database connection</entry>
</row>
<row>
@ -411,7 +410,7 @@
<row>
<entry><link linkend="mysqli-stmt.param-count">$mysqli_stmt::param_count</link></entry>
<entry><function>mysqli_stmt_param_count</function></entry>
<entry><function>mysqli_param_count</function></entry>
<entry>N/A</entry>
<entry>Returns the number of parameter for the given statement</entry>
</row>
<row>
@ -438,13 +437,13 @@
<row>
<entry><methodname>mysqli_stmt::bind_param</methodname></entry>
<entry><function>mysqli_stmt_bind_param</function></entry>
<entry><function>mysqli_bind_param</function></entry>
<entry>N/A</entry>
<entry>Binds variables to a prepared statement as parameters</entry>
</row>
<row>
<entry><methodname>mysqli_stmt::bind_result</methodname></entry>
<entry><function>mysqli_stmt_bind_result</function></entry>
<entry><function>mysqli_bind_result</function></entry>
<entry>N/A</entry>
<entry>Binds variables to a prepared statement for result storage</entry>
</row>
<row>
@ -468,7 +467,7 @@
<row>
<entry><methodname>mysqli_stmt::fetch</methodname></entry>
<entry><function>mysqli_stmt_fetch</function></entry>
<entry><function>mysqli_fetch</function></entry>
<entry>N/A</entry>
<entry>Fetch results from a prepared statement into the bound variables</entry>
</row>
<row>
@ -522,13 +521,13 @@
<row>
<entry><methodname>mysqli_stmt::result_metadata</methodname></entry>
<entry><function>mysqli_stmt_result_metadata</function></entry>
<entry><function>mysqli_get_metadata</function></entry>
<entry>N/A</entry>
<entry>Returns result set metadata from a prepared statement</entry>
</row>
<row>
<entry><methodname>mysqli_stmt::send_long_data</methodname></entry>
<entry><function>mysqli_stmt_send_long_data</function></entry>
<entry><function>mysqli_send_long_data</function></entry>
<entry>N/A</entry>
<entry>Send data in blocks</entry>
</row>
<row>