PHP 5.4 的新功能…

PHP 5.4 在 3/1 已經發布了,其中我覺得比較重要的幾個新功能:

  • Traits – 看範例應該就會懂用法了,code reuse用的。
  • 內建Web Server,開發測試的時候不需要設定 apache 或 nginx 了。
  • Closure 裡面支援 $this。
  • $a = [1,2,4,5]; 這樣的 Array Notation。
  • func()[0](new Foo)->bar() 這樣的寫法。
  • json_encode() 的第二個參數可以給 JSON_PRETTY_PRINT(印出人類方便閱讀的 JSON 格式)與 JSON_UNESCAPED_UNICODE(不要 escape unicode 字元)

然後 5.4 剛出的新功能就有 bug 了…XD

Leave a Reply

Your email address will not be published. Required fields are marked *