摘要:
性能提升:PHP7比PHP5.6性能提升了两倍。 Improved performance: PHP 7 is up to twice as fast as PHP 5.6全面一致的64位支持。 Consistent 64-bit support以前的许多致命错误,现在改成抛出异常。Many fat 阅读全文
摘要:
更好的常量 定义常量时允许使用之前定义的常量进行计算: const A = 2;const B = A + 1; class C{ const STR = "hello"; const STR2 = self::STR + ", world";} 允许常量作为函数参数默认值: function fu 阅读全文