PHP 5.4 - A Major Update
Written by Ian Elliot   
Friday, 02 March 2012

PHP 5.4 has been released and so has a new version of Zend Framework. 

PHP 5.4 brings improvements in memory management and performance, which in turn will make it faster,  a built-in webserver for testing purposes, and features that had been destined for PHP 6.0.

Traits, a mechanism for code re-use is a feature that had been under development for PHP 6.0, the version of PHP that would have seen a complete rewrite of the language using Unicode, rather than ASCII.

Once PHP 6.0 was shelved for being too ambitious some of its innovations were incorporated in PHP 5.4.

According to the PHP reference:

A Trait is intended to reduce some limitations of single inheritance by enabling a developer to reuse sets of methods freely in several independent classes living in different class hierarchies. The semantics of the combination of Traits and classes is defined in a way which reduces complexity, and avoids the typical problems associated with multiple inheritance and Mixins.

A Trait is similar to a class, but only intended to group functionality in a fine-grained and consistent way. It is not possible to instantiate a Trait on its own. It is an addition to traditional inheritance and enables horizontal composition of behavior; that is, the application of class members without requiring inheritance.

Another key feature is shortened array syntax which replaces array ( ) with [ ] as shown here

:

 

Another important change is that Magic Quotes, a features that was supposed to improve security by preventing SQL Injection but in fact was notoriously insecure and had already been deprecated is finally removed. Other deprecated features have also been removed to provide a cleaner code base.

Some users are claiming speed increases as large as 25% and memory usage down 35%. Of course in a production environement these speed increases might be more difficult to achieve but there are also reports that well known PHP applications such as Durpal, Wordpress and others are showing between 10% and 20% speedups.

A migration guide is provided for users upgrading from PHP 5.3.

phplogo

Zend Framework v2 is also a major update claiming more productive collaboration, better application performance, support for cloud services and providers, and a streamlined and simple workflow for developing next-generation mobile applications and APIs.

More Information

PHP 5.4.0 Release Announcement

Download PHP 5.4

 

Related Articles

 

pico book

 

Comments




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

 

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

 

Banner


Formae Launched As Terraform Alternative
22/10/2025

Platform Engineering Labs has launched formae, an open-source Infrastructure as Code platform built to replace state-driven systems like Terraform.



Apache Daffodil 4 Adds New API
09/10/2025

Apache Daffodil 4 has been released. This is a major upgrade that has moved to depending on Scala 3, Java 17 or newer. The new version also includes a new backwards incompatible validation API.


More News

Last Updated ( Friday, 02 March 2012 )