First PHP 5.5 Development Preview Released
Written by Ian Elliot   
Monday, 19 November 2012

New feature in PHP 5.5 include support for generators and a new password hashing API. It will no longer support Windows XP and 2003.

The release of PHP 5.5.0 Alpha1 marks the beginning of the release cycle for the next version of the scripting language widely used for web development. PHP users are being asked to test it and submit bug reports - but bear in mind this is only the first step to a production version.

The new password hashing API will enable developers to generate a secure salted password hash using Bcrypt in a single line of code:

$hash = password_hash($password, PASSWORD_DEFAULT);

A salt is not needed as it will be auto-generated by the API if not present and added as a random component to the password.

As the Bcrypt hash method is computationally intensive and requires a lot of memory, its use makes passwords difficult to crack - providing they are long enough. Also the use of salts the use of rainbow tables is limited.  If the user wants, the hash function call can not only specify its own salt but also adjust the complexity (cost) of the Bcrypt method or change the hashing method entirely. This information is stored along with the hashed password.

Other improvements in this version include:

  • support for finally in try/catch blocks
  • support for list() in foreach
  • constant array/string dereferencing
  • ext/intl improvement
  • support for using empty() on the result of function calls and other expressions

plus many more improvements and bug fixes that are listed on the PHP News file on github.

 

The currently supported stable releases of PHP are versions 5.4.8 and 5.3.18.

 phplogo

More Information

PHP Site

PHP Downloads page

Related Articles

PHP v Ruby v Python - The Language Crunch

PHP 5.4 - A Major Update

Language Wars - PHP, Python, Ruby

Beginning PHP 5.3 (book review)

PHP in Action (book review)

PHP 5 in Practice (book review)

 

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

 

To be informed about new articles on I Programmer, install the I Programmer Toolbar, subscribe to the RSS feed, follow us on, Twitter, Facebook, Google+ or Linkedin,  or sign up for our weekly newsletter.

 

Banner


Two New Resources Tailored To Spring Developers
25/04/2024

Spring Academy Pro is now freely available and Spring Builders is a new meeting point to discuss everything Spring related.



Rust Twice As Productive As C++
03/04/2024

Google director of engineering, Lars Bergstrom, gave a talk at the recent Rust Nation UK conference and claimed that Rust was twice as productive as C++. Given how good Google is at C++, this is quite [ ... ]


More News

Last Updated ( Monday, 19 November 2012 )