MySQLi: various updates [10] - add mysqli_stmt methods to versions

The OO-style methods were not included in the `versions.xml` file. This is a known issue based on the `FIXME` comment at the top of the file.

This commit adds the methods from the `mysqli_stmt` class to the `versions.xml` file.

Version numbers based on the versions as set for the procedural functions. This may need verification.

Patch contributed by jrfnl.


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@350067 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Christoph Michael Becker 2020-06-20 15:01:34 +00:00
parent 802b577a4b
commit cc7a508844

View file

@ -9,7 +9,6 @@
<versions>
<!-- A few mysqli procedural function names differ from their OOP counterparts, or don't exist -->
<function name="mysqli_warning::__construct" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::__construct" from="PHP 5, PHP 7"/>
<function name="mysqli_affected_rows" from="PHP 5, PHP 7"/>
<function name="mysqli_autocommit" from="PHP 5, PHP 7"/>
@ -215,6 +214,27 @@
<function name="mysqli::use_result" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::__construct" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::attr_get" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::attr_set" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::bind_param" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::bind_result" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::close" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::data_seek" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::execute" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::fetch" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::free_result" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::get_result" from="PHP 5 &gt;= 5.3.0, PHP 7"/>
<function name="mysqli_stmt::get_warnings" from="PHP 5 &gt;= 5.1.0, PHP 7"/>
<function name="mysqli_stmt::more_results" from="PHP 5 &gt;= 5.3.0, PHP 7"/>
<function name="mysqli_stmt::next_result" from="PHP 5 &gt;= 5.3.0, PHP 7"/>
<function name="mysqli_stmt::num_rows" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::prepare" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::reset" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::result_metadata" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::send_long_data" from="PHP 5, PHP 7"/>
<function name="mysqli_stmt::store_result" from="PHP 5, PHP 7"/>
<function name="mysqli_result" from="PHP 5, PHP 7"/>
<function name="mysqli_driver" from="PHP 5, PHP 7"/>
<function name="mysqli_warning" from="PHP 5, PHP 7"/>