PHP 5.5.0 Alpha1 released
15-Nov-2012
The PHP development team announces the immediate availability of PHP 5.5.0alpha1. This release marks the beginning of the PHP 5.5.0 release cycle. All users of PHP are encouraged to test this version carefully, and report any bugs in the bug tracking system.THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!
PHP 5.5.0 Alpha 1 comes with new features such as (incomplete list) :We also dropped support for Windows XP and 2003.
- support for Generators,
- a new password hashing API,
- support for finally in try/catch blocks
- support for list() in foreach,
- constant array/string dereferencing,
- ext/intl improvement.
You can read the full list of changes in the NEWS file contained in the release archive.
For source downloads of PHP 5.5.0 Alpha 1 please visit the download page, Windows binaries can be found on windows.php.net/qa/.
Thank you for helping us making PHP better.
Looks like lots of solid additions, although it does not look as exciting as PHP 5.3 and 5.4's initial releases. Whats your thought? I was expecting syntax like this below to be made possible in PHP 5.5, too bad its not happening and we still have to use the constructor to initiate properties as objects:
class Foo{
}
class Bar{
public $foo = new Foo();
}
Edited by Hall of Famer, 19 November 2012 - 05:00 PM.














