bjori Sat Jun 27 13:23:03 2009 UTC Modified files: (Branch: PHP_5_3) /php-src UPGRADING Log: - Added missing deprecated things - Added missing INI settings http://cvs.php.net/viewvc.cgi/php-src/UPGRADING?r1=1.1.2.3.2.1.2.32&r2=1.1.2.3.2.1.2.33&diff_format=u Index: php-src/UPGRADING diff -u php-src/UPGRADING:1.1.2.3.2.1.2.32 php-src/UPGRADING:1.1.2.3.2.1.2.33 --- php-src/UPGRADING:1.1.2.3.2.1.2.32 Fri Jun 26 15:15:02 2009 +++ php-src/UPGRADING Sat Jun 27 13:23:03 2009 @@ -1,4 +1,4 @@ -$Id: UPGRADING,v 1.1.2.3.2.1.2.32 2009/06/26 15:15:02 sixd Exp $ +$Id: UPGRADING,v 1.1.2.3.2.1.2.33 2009/06/27 13:23:03 bjori Exp $ UPGRADE NOTES - PHP 5.3 @@ -162,6 +162,8 @@ - call_user_method() and call_user_method_array() are now deprecated. Use call_user_func() and call_user_func_array() instead. +- dl() is deprecated. + - The set_magic_quotes_runtime() function is now deprecated. - mysql_listtables(), mysql_dropdb(), mysql_createdb(), mysql_list_tables(), @@ -174,6 +176,10 @@ - mcrypt_generic_end() is deprecated. +- mysql_db_query() is deprecated. + +- mysql_escape_string() is deprecated. + - session_register(), session_unregister(), and session_is_registered() are now deprecated. Use the $_SESSION superglobal array instead. @@ -190,6 +196,16 @@ - magic_quotes_runtime - magic_quotes_sybase +- The is_dst parameter to mktime() is deprecated. + +- Assigning the return value of "new" by reference is deprecated + +- Call-time pass-by-reference has been deprecated + +- Usage of {} to access string offsets is deprecated + +- Passing locale category name as string to setlocale() is deprecated. + =============== 6. Undeprecated =============== @@ -309,9 +325,37 @@ - The default value of oci8.default_prefetch has been changed from 10 to 100. +- open_basedir is now PHP_INI_ALL + - A new directive, request_order, controls the behavior of $_REQUEST independently of variables_order. +- New INI directives: + - mail.add_x_header + - user_ini.filename + - user_ini.cache_ttl + - exit_on_timeout + - mysqli.allow_persistent + - mysqli.default_host + - mysqli.default_socket + - mysqli.allow_local_infile + - mysqli.cache_size + - oci8.connection_class + - pdo_mysql.default_socket + - pdo_mysql.debug + - pdo_mysql.cache_size + - sqlite3.extension_dir + - mysql.default_socket + - mysql.allow_local_infile + - mysql.cache_size + - mysqlnd.collect_statistics + - mysqlnd.collect_memory_statistics + - mysqlnd.debug + - mysqlnd.net_cmd_buffer_size + - mysqlnd.net_read_buffer_size + - mysqlnd.log_mask + + ==================== 10. Syntax additions ====================
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php