新特性

PHP 5.4.0 提供了丰富的新特性:

  • 新增支持 traits
  • 新增短数组语法,比如 $a = [1, 2, 3, 4];$a = ['one' => 1, 'two' => 2, 'three' => 3, 'four' => 4];
  • 新增支持对函数返回数组的成员访问解析,例如 foo()[0]
  • 现在 闭包 支持 $this
  • 现在不管是否设置 short_open_tag php.ini 选项,<?= 将总是可用。
  • 新增在实例化时访问类成员,例如: (new Foo)->bar()
  • 现在支持 Class::{expr}() 语法。
  • 新增二进制直接量,例如:0b001001101
  • 改进解析错误信息和不兼容参数的警告。
  • SESSION 扩展现在能追踪文件的 上传进度
  • 内置用于开发的 CLI 模式的 web server

User Contributed Notes

dave1010 at gmail dot com 27-Jul-2012 08:01
As of PHP 5.4, the CLI (using readline) no longer dies on fatal errors (for example calling undefined functions).
Nick Garvey 22-Jun-2012 03:11
'callable' was implemented as a typehint in 5.4
Anonymous 22-Oct-2011 05:50
The keyword 'insteadof' is introduced with PHP 5.4 http://php.net/language.oop5.traits.php