PHP 5.6: What's New

It's been a long time coming, but we finally have a new version of PHP. It offers some nice new features and improvements, while other features have been removed or marked as deprecated.

Let's dive in and take a look at everything the latest version offers.

Backward Incompatible Changes

In this part, I'll be listing backward incompatible changes; however, most of your PHP5 code will work in PHP 5.6 without any modifications.

json_decode

As per the JSON specification, json_decode() will immediately eliminate all non‑lowercase variants of the JSON literals like true, false, and null. It will also set json_last_error() accordingly.

GMP Resources

If you are not sure what GNU Multiple Precision (GMP) in PHP is, then I would advise you to look at this article on PHP.net. In PHP 5.6, GMP resources are objects. You do not need to make any changes in your existing code unless you are checking a resource explicitly using is_resource().

Mcrypt

All Mcrypt functions that expect keys and IVs will not accept keys or IVs with incorrect size. These functions include mcrypt_encrypt(), mcrypt_decrypt(), mcrypt_cbc(), mcrypt_cfb(), mcrypt_ecb(), mcrypt_generic(), and mcrypt_ofb().

Array Values and Overwriting

Before PHP 5.6, when you declared an array in class property with explicit and implicit keys, the array value was overwritten silently when the explicit key was the same as a sequential implicit key.

New Features in PHP 5.6

Constant Scalar Expressions

With the release of PHP 5.6, it is possible to provide a scalar expression which includes both numeric and string literals. In previous versions of PHP, it was expected to be a static value of constant function arguments and property declaration.

Variadic Functions via "..."

Earlier we were using func_get_args() to get all the arguments available in a function call, but with PHP 5.6, this can be removed as we can easily get that facility with the ... operator.

Argument Unpacking

We can use the same operator (...) to unpack any argument which is either an array or a set of Traversable objects. 

** Shorthand

The ** operator has been added for exponentiation. We have support for the shorthand operator as easily.

Note that the order of operations comes into play using this operator. Please take a look at the following example for a clear understanding:

You might expect it to return 256 as the grouping would be like (2 ** 2) ** 4, but that is not the case here. The real result would be 65,536, as the grouping would be from right to left and it will parse as 2 ** (2 ** 4).

phpdbg

An interactive debugger called phpdbg has been added in PHP 5.6. Please visit the official document for phpdbg.

This phpdbg debugger is implemented as a SAPI module.

__debugInfo()

A new magic method added in PHP 5.6 allows you to change the properties and values of an object when the object is output using var_dump().

Default Character Encoding

The default character set for the htmlentities(), html_entity_decode() and htmlspecialchars() functions can be set using default_charset().

Large File Upload

It is possible to upload a file larger than 2 GB.

php://input is reusable

php://input can be used as many times you want to read data. This feature offers a great reduction in memory compared to reading POST data.

use function and use const

The use operator has been offered to support the extending of constants and functions. This can be performed by using the const and the use functions, respectively. Earlier this operator was limited to class only.

Deprecated Features

Call From Incompatible Context

When you attempt to access a non-static method statically, or a static method using object context, it will immediately generate the E_DEPRECATED error.

$HTTP_RAW_POST_DATA

$HTTP_RAW_POST_DATA is deprecated now. We should be using php://input instead.

Encoding Setting

With the launch of the default_charset() configuration, the related option is deprecated for iconv and mbstring.

List of Changed Functions

A list of all changed functions in PHP 5.6 can be found in the latest PHP Manual.

List of New Functions

A list of all new functions in PHP 5.6 can be found in this section of the PHP Manual.

Conclusion

While the PHP team is working on the next version of PHP, I would say PHP 5.6 has shipped with a solid amount of improvements and feature additions, and it offers one of the easiest upgrades from past versions.

Don't forget to let us know of any questions or comments you may have in the feed below.

Tags:

Comments

Related Articles