Журнал Змін

Були здійснені наступні зміни з класами/функціями/методами цього розширення.

General Changelog for the ext/mysql extension

This changelog references the ext/mysql extension.

Changes to existing functions

The following list is a compilation of changelog entries from the ext/mysql functions.

VersionFunctionDescription
5.5.0mysql_connectThis function will generate an E_DEPRECATED error.
 mysql_db_nameThe mysql_list_dbs function is deprecated, and emits an E_DEPRECATED level error.
 mysql_pconnectThis function will generate an E_DEPRECATED error.
 mysql_tablenameThe mysql_tablename function is deprecated, and emits an E_DEPRECATED level error.
5.3.0mysql_db_queryThis function now throws an E_DEPRECATED notice.
 mysql_escape_stringThis function now throws an E_DEPRECATED notice.
4.3.7mysql_list_tablesThis function became deprecated.
4.3.0mysql_escape_stringThis function became deprecated, do not use this function. Instead, use mysql_real_escape_string.

Global ext/mysql changes

The following is a list of changes to the entire ext/mysql extension.

Версія Опис
5.5.0

This extension has been deprecated. Connecting to a MySQL database via mysql_connect(), mysql_pconnect() or an implicit connection via any other mysql_* function will generate an E_DEPRECATED error.

5.5.0

All of the old deprecated functions and aliases now emit E_DEPRECATED errors. These functions are:

mysql(), mysql_fieldname(), mysql_fieldtable(), mysql_fieldlen(), mysql_fieldtype(), mysql_fieldflags(), mysql_selectdb(), mysql_createdb(), mysql_dropdb(), mysql_freeresult(), mysql_numfields(), mysql_numrows(), mysql_listdbs(), mysql_listtables(), mysql_listfields(), mysql_db_name(), mysql_dbname(), mysql_tablename(), and mysql_table_name().

add a note add a note

User Contributed Notes 1 note

up
-1
Gianluca
8 years ago
In these wrappers all mysql and ereg functions are rewritten using mysqli and pcre
https://sourceforge.net/projects/mysqlwithmysqli/
https://sourceforge.net/projects/ereg-using-pcre/
To Top