diff options
author | Christopher Jones <sixd@php.net> | 2013-07-01 16:48:18 -0700 |
---|---|---|
committer | Christopher Jones <sixd@php.net> | 2013-07-01 16:48:18 -0700 |
commit | bf8ed4708e9a94b79a1810fa9a9366d67b162ed5 (patch) | |
tree | 4d98d8aeb0a777ad7356cecaeb7861fe81598ece | |
parent | 49a2cd93d64a78761ecc743cc0d99add9e362e04 (diff) | |
download | php-git-bf8ed4708e9a94b79a1810fa9a9366d67b162ed5.tar.gz |
Add a few links
-rwxr-xr-x | UPGRADING | 21 |
1 files changed, 13 insertions, 8 deletions
@@ -40,40 +40,45 @@ PHP 5.5 UPGRADE NOTES (http://php.net/foreach#control-structures.foreach.list, http://wiki.php.net/rfc/foreachlist) -- Support finally keyword. (Laruence) +- Support "finally" keyword. (Laruence) (http://php.net/exceptions, http://wiki.php.net/rfc/finally) - Support constant array/string dereferencing. (Laruence) - (https://wiki.php.net/rfc/constdereference) + (http://php.net/manual/en/language.types.array.php, + https://wiki.php.net/rfc/constdereference) - Add support for using empty() on the result of function calls and other expressions. Thus it is now possible to write empty(getArray()), - for example. (https://wiki.php.net/rfc/empty_isset_exprs) + for example. (http://php.net/manual/en/function.empty.php, + https://wiki.php.net/rfc/empty_isset_exprs) - Added generators. (http://php.net/generators, https://wiki.php.net/rfc/generators) - ClassName::class syntax returning full class name for a class as a - string constant. - (http://php.net/oop5.basic#language.oop5.basic.class.class, + string constant. (http://php.net/oop5.basic, https://wiki.php.net/rfc/class_name_scalars) - Added support for non-scalar Iterator keys in foreach. - (https://wiki.php.net/rfc/foreach-non-scalar-keys). + (http://php.net/manual/en/control-structures.foreach.php, + https://wiki.php.net/rfc/foreach-non-scalar-keys). - Bundled Zend OPcache extension to improve performance (http://php.net/manual/en/book.opcache.php, https://wiki.php.net/rfc/optimizerplus) - Added a simplified password hashing API - (http://php.net/password) + (http://php.net/password, https://wiki.php.net/rfc/password_hash) ======================================== 2. Changes in SAPI modules ======================================== - Support for changing the process's title in CLI/CLI-Server - SAPIs. (Keyur) (https://wiki.php.net/rfc/cli_process_title) + SAPIs. (Keyur) + (http://php.net/manual/en/function.cli-set-process-title.php, + http://php.net/manual/en/function.cli-get-process-title.php, + https://wiki.php.net/rfc/cli_process_title) - Support for systemd in php-fpm: Add --with-fpm-systemd option to report health to systemd, and add systemd_interval option to |