PHP Developer officially released version 5.5, which was developed from last November, after several beta versions. PHP 5.5 contains a series of new features, such as the new Array_column () function and the foreach () loop, which supports scalar iteration keys, including the generators allows the developer to implement a simple co-process.
At the same time, a new version introduces a password hash function, which allows the developer to easily implement a salt-added security password, a new finally keyword, a foreach structure that supports list () construction, and other improvements including opcode caching, code optimization, Zend optimizer+, etc. These pairs do not affect existing code, mainly to improve the performance and stability of the language.
The new password hash API uses the Bcrypt method, as shown in the following example:
- $hash = Password_hash ($password
Check method:
- password_verify ($password$hash);
PHP developers also remind users that PHP 5.5 also contains some content that is not backwards compatible, including: Windows XP and 2003 systems are no longer supported, case-insensitive matching functions, classes, and constant names are not related to Locale, for some developers who use non-ASCII code constant names need to Be aware of. For a complete list of PHP 5.5 non-backwards compatible lists, see List of new features and possible incompatibilities
See the NEWS file for a complete improvement record for PHP 5.5
Download Address:
http://windows.php.net/qa/(Windows)
HTTP://PHP.NET/DOWNLOADS.PHP#V5 (source package)
Original link: http://www.oschina.net/news/41621/php-5-5-0-adds-optimizer-and-drops-windows-xp-support
The above describes the PHP55 release, no longer support Windows XP, including the content of Windows XP, want to be interested in PHP tutorial friends helpful.