Here's a handful of demos showing some of the new features in PHP 5.5.
Prior to PHP 5.5, empty() would only accept variables, not function results.
You can now use the 'finally' keyword after a 'catch' block to execute code after a 'try', no matter if an Exception was thrown or not.
Generators allow efficient iteration without having to create a complex Iterator class.
Under PHP 5.5 and later, you can return non-scalar keys from Iterators (and Generators).
Under PHP 5.5 and later, you can set the process title under the CLI SAPI, without the need for any extensions (such as proctitle, required under PHP <= 5.4).