2005-11-23 23:01:54 +08:00
|
|
|
$Id$
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
UPGRADE NOTES - PHP X.Y
|
|
|
|
|
|
|
|
1. Changes made to default configuration
|
|
|
|
2. Reserved words and classes
|
|
|
|
3. Changes made to existing functions
|
|
|
|
4. Changes made to existing methods
|
|
|
|
5. Changes made to existing classes
|
|
|
|
6. Deprecated
|
2009-01-29 01:23:28 +08:00
|
|
|
7. Extensions:
|
|
|
|
a. moved out to PECL and actively maintained there
|
|
|
|
b. no longer maintained
|
|
|
|
c. with changed behaviour
|
|
|
|
d. no longer possible to disable
|
|
|
|
8. Changes in SAPI support
|
|
|
|
9. Changes in INI directives
|
|
|
|
10. Syntax additions
|
|
|
|
11. Windows support
|
2010-03-25 00:23:50 +08:00
|
|
|
12. New in PHP X.Y:
|
2009-01-29 01:23:28 +08:00
|
|
|
a. New libraries
|
|
|
|
b. New extensions
|
|
|
|
c. New stream wrappers
|
2009-06-25 05:16:53 +08:00
|
|
|
d. New stream filters
|
|
|
|
e. New functions
|
|
|
|
f. New global constants
|
|
|
|
g. New classes
|
|
|
|
h. New methods
|
|
|
|
i. New class constants
|
2010-03-25 00:23:50 +08:00
|
|
|
j. New hash algorithms
|
2005-11-23 07:49:13 +08:00
|
|
|
|
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
========================================
|
|
|
|
1. Changes made to default configuration
|
|
|
|
========================================
|
2009-06-25 05:16:53 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
- The default_charset setting now defaults to UTF-8.
|
|
|
|
It was ISO-88590-1 before, so if you were relying
|
|
|
|
on the default, you will need to add:
|
2009-06-15 03:15:57 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
default_charset = iso-8859-1
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2010-04-01 02:03:17 +08:00
|
|
|
to your php.ini to preserve pre-PHPX.Y behavior.
|
|
|
|
|
|
|
|
- We now check at compile time if /dev/urandom or /dev/arandom
|
|
|
|
are present to provide non-blocking entropy to session id
|
|
|
|
generation. If either is present, session.entropy_file
|
|
|
|
now defaults to that file and session.entropy_length defaults
|
|
|
|
to 32. If you do not want extra entropy for your session ids
|
|
|
|
for some reason, add:
|
|
|
|
|
|
|
|
session.entropy_file=
|
|
|
|
session.entropy_length=0
|
|
|
|
|
|
|
|
to your php.ini to preserve pre-PHPX.Y behavior.
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2010-04-29 09:03:21 +08:00
|
|
|
- Deprecated ini directives will now throw an E_CORE_WARNING's
|
|
|
|
instead of the previous E_WARNING's.
|
|
|
|
|
|
|
|
The following directives are marked as deprecated:
|
|
|
|
- magic_quotes_gpc
|
|
|
|
- magic_quotes_runtime
|
|
|
|
- magic_quotes_sybase
|
|
|
|
|
|
|
|
- The following directives, which indicates a removed feature
|
|
|
|
in PHP will now throw an E_CORE_ERROR upon startup like the
|
|
|
|
deprecation warnings.
|
|
|
|
|
|
|
|
The following directives are no longer available:
|
|
|
|
- allow_call_time_pass_reference
|
|
|
|
- define_syslog_variables
|
|
|
|
- highlight.bg
|
|
|
|
- register_globals
|
|
|
|
- register_long_arrays
|
|
|
|
- safe_mode
|
|
|
|
- safe_mode_gid
|
|
|
|
- safe_mode_include_dir
|
|
|
|
- safe_mode_exec_dir
|
|
|
|
- safe_mode_allowed_env_vars
|
|
|
|
- safe_mode_protected_env_vars
|
|
|
|
- zend.ze1_compatibility_mode
|
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
=============================
|
|
|
|
2. Reserved words and classes
|
|
|
|
=============================
|
2009-06-25 15:57:05 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
2009-06-25 15:57:05 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
=====================================
|
|
|
|
3. Changes made to existing functions
|
|
|
|
=====================================
|
2009-06-26 02:01:08 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
2009-06-26 02:01:08 +08:00
|
|
|
|
2009-01-29 01:23:28 +08:00
|
|
|
===================================
|
2010-03-25 00:23:50 +08:00
|
|
|
4. Changes made to existing methods
|
2009-01-29 01:23:28 +08:00
|
|
|
===================================
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2009-01-29 01:23:28 +08:00
|
|
|
===================================
|
2010-03-25 00:23:50 +08:00
|
|
|
5. Changes made to existing classes
|
2009-01-29 01:23:28 +08:00
|
|
|
===================================
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
2005-11-23 07:49:13 +08:00
|
|
|
|
|
|
|
=============
|
2010-03-25 00:23:50 +08:00
|
|
|
6. Deprecated
|
2005-11-23 07:49:13 +08:00
|
|
|
=============
|
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2010-04-29 09:03:21 +08:00
|
|
|
==========
|
|
|
|
7. Removed
|
|
|
|
==========
|
|
|
|
|
|
|
|
a. removed features
|
|
|
|
|
|
|
|
- register_globals
|
|
|
|
- register_long_arrays
|
|
|
|
- Safe mode
|
|
|
|
- Session extension bug compatibility mode
|
|
|
|
- y2k_compliance mode
|
|
|
|
|
|
|
|
b. removed ini directives
|
|
|
|
|
|
|
|
- define_syslog_variables
|
|
|
|
- register_globals
|
|
|
|
- register_long_arrays
|
|
|
|
- safe_mode
|
|
|
|
- safe_mode_gid
|
|
|
|
- safe_mode_include_dir
|
|
|
|
- safe_mode_exec_dir
|
|
|
|
- safe_mode_allowed_env_vars
|
|
|
|
- safe_mode_protected_env_vars
|
|
|
|
- session.bug_compat42
|
|
|
|
- session.bug_compat_warn
|
|
|
|
- y2k_compliance
|
|
|
|
|
|
|
|
c. removed functions
|
|
|
|
|
|
|
|
- define_syslog_variables()
|
|
|
|
- import_request_variables()
|
|
|
|
- session_is_registered()
|
|
|
|
- session_register()
|
|
|
|
- session_unregister()
|
|
|
|
|
|
|
|
=============
|
|
|
|
8. Extensions
|
|
|
|
=============
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2009-01-29 01:23:28 +08:00
|
|
|
a. moved out to PECL and actively maintained there
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2009-01-29 01:23:28 +08:00
|
|
|
b. no longer maintained
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2009-01-29 01:23:28 +08:00
|
|
|
c. with changed behaviour
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2010-05-12 00:40:03 +08:00
|
|
|
- The session extension now can hook into the file upload feature
|
|
|
|
in order to provide upload progress information through session
|
|
|
|
variables.
|
2009-06-26 02:17:52 +08:00
|
|
|
|
2009-01-29 01:23:28 +08:00
|
|
|
d. no longer possible to disable
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2009-01-29 01:23:28 +08:00
|
|
|
==========================
|
2010-04-29 09:03:21 +08:00
|
|
|
9. Changes in SAPI support
|
2009-01-29 01:23:28 +08:00
|
|
|
==========================
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2010-04-29 09:03:21 +08:00
|
|
|
=============================
|
|
|
|
10. Changes in INI directives
|
|
|
|
=============================
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2010-05-12 00:40:03 +08:00
|
|
|
- Added session.upload_progress.enabled, session.upload_progress.cleanup,
|
|
|
|
session.upload_progress.prefix, session.upload_progress.name,
|
|
|
|
session.upload_progress.freq, session.upload_progress.min_freq.
|
2009-06-27 21:23:03 +08:00
|
|
|
|
2009-01-29 01:23:28 +08:00
|
|
|
====================
|
2010-04-29 09:03:21 +08:00
|
|
|
11. Syntax additions
|
2009-01-29 01:23:28 +08:00
|
|
|
====================
|
2005-11-23 07:49:13 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
2009-06-25 15:57:05 +08:00
|
|
|
|
2009-01-29 01:23:28 +08:00
|
|
|
===================
|
2010-04-29 09:03:21 +08:00
|
|
|
12. Windows support
|
2009-01-29 01:23:28 +08:00
|
|
|
===================
|
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
2009-01-29 01:23:28 +08:00
|
|
|
|
|
|
|
===================
|
2010-04-29 09:03:21 +08:00
|
|
|
13. New in PHP X.Y:
|
2009-01-29 01:23:28 +08:00
|
|
|
===================
|
|
|
|
|
|
|
|
a. New libraries
|
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
2009-01-29 01:23:28 +08:00
|
|
|
|
|
|
|
b. New extensions
|
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
2009-01-29 01:23:28 +08:00
|
|
|
|
|
|
|
c. New stream wrappers
|
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
2009-01-29 01:23:28 +08:00
|
|
|
|
2009-06-24 03:40:31 +08:00
|
|
|
d. New stream filters
|
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
2009-06-24 03:40:31 +08:00
|
|
|
|
|
|
|
e. New functions
|
2009-01-29 01:23:28 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
- Core:
|
2009-01-29 01:23:28 +08:00
|
|
|
|
2009-06-24 03:40:31 +08:00
|
|
|
f. New global constants
|
2009-01-29 01:23:28 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
- Core:
|
2010-05-06 23:18:20 +08:00
|
|
|
- get_declared_traits()
|
2009-01-29 01:23:28 +08:00
|
|
|
|
2009-06-24 03:40:31 +08:00
|
|
|
g. New classes
|
2009-01-29 01:23:28 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
2009-01-29 01:23:28 +08:00
|
|
|
|
2009-06-24 03:40:31 +08:00
|
|
|
h. New methods
|
2009-01-29 01:23:28 +08:00
|
|
|
|
2010-06-02 23:29:42 +08:00
|
|
|
- Reflection:
|
|
|
|
- ReflectionClass::isCloneable()
|
2010-06-03 20:31:22 +08:00
|
|
|
- ReflectionClass::getTraits()
|
|
|
|
- ReflectionClass::getTraitNames()
|
|
|
|
- ReflectionClass::getTraitAliases()
|
2009-01-29 01:23:28 +08:00
|
|
|
|
2009-06-24 03:40:31 +08:00
|
|
|
i. New class constants
|
2009-01-29 01:23:28 +08:00
|
|
|
|
2010-03-25 00:23:50 +08:00
|
|
|
-
|
|
|
|
|
|
|
|
j. New Hash algorithms
|
|
|
|
|
|
|
|
- fnv132
|
|
|
|
- fnv164
|
|
|
|
- joaat
|