summaryrefslogtreecommitdiff
path: root/UPGRADING
diff options
context:
space:
mode:
authorHannes Magnusson <bjori@php.net>2009-06-26 10:46:50 +0000
committerHannes Magnusson <bjori@php.net>2009-06-26 10:46:50 +0000
commitf36cb429f44bbc761e89dba857d5432d8f8ad3f0 (patch)
treefb513bb26042e6f3ed15ac0b59c6bb5044b484a8 /UPGRADING
parentaaae921225a815a898b65d8e27d9a2b14d0eb3ba (diff)
downloadphp-git-f36cb429f44bbc761e89dba857d5432d8f8ad3f0.tar.gz
Add deprecated functions
Diffstat (limited to 'UPGRADING')
-rwxr-xr-xUPGRADING15
1 files changed, 14 insertions, 1 deletions
diff --git a/UPGRADING b/UPGRADING
index f0e2fd5e23..fb4adccb30 100755
--- a/UPGRADING
+++ b/UPGRADING
@@ -156,9 +156,22 @@ UPGRADE NOTES - PHP 5.3
- define_syslog_variables() is deprecated.
-- All ereg functions are deprecated and emit E_DEPRECATED errors.
+- set_socket_blocking() is deprecated.
+
+- call_user_method() and call_user_method_array() are now deprecated.
+
+- set_magic_quotes_runtime(), magic_quotes_runtime() are now deprecated.
+
+- mysql_listtables(), mysql_dropdb(), mysql_createdb(),
+ mysql_list_tables(), mysql_drop_db(), mysql_create_db() are now deprecated.
+
+- All ereg functions are deprecated and emit E_DEPRECATED errors
+ (sql_regcase(), spliti(), split(), ereg_replace(), eregi(),
+ ereg_replace(), ereg()).
Use the PCRE family of functions (preg_*()) instead.
+- mcrypt_generic_end() is deprecated.
+
- session_register(), session_unregister(), and session_is_registered() are now
deprecated. Use the $_SESSION superglobal array instead.