PHP 8.0.0 下载地址:

https://www.php.net/downloads

下文将对新版本的主要亮点做大略先容:

php源代码PHP 80正式宣布支撑JIT编译器机能晋升高达3倍 Python

命名参数

https://wiki.php.net/rfc/named_params

PHP 7

htmlspecialchars($string, ENT_COMPAT | ENT_HTML401, 'UTF-8', false);

PHP 8

htmlspecialchars($string, double_encode: false);仅指定必需参数,跳过可选参数。
参数与顺序无关,且是自描述的。
属性

现在,开拓者可以利用基于PHP原生语法的构造化元数据来代替PHPDoc表明。

https://wiki.php.net/rfc/attributes_v2

PHP 7

class PostsController{ / @Route("/api/posts/{id}", methods={"GET"}) / public function get($id) { / ... / }}

PHP 8

class PostsController{ #[Route("/api/posts/{id}", methods: ["GET"])] public function get($id) { / ... / }}布局器属性提升

新版本定义和初始化属性所用的样板代码更少。

https://wiki.php.net/rfc/constructor_promotion

PHP 7

class Point { public float $x; public float $y; public float $z; public function __construct( float $x = 0.0, float $y = 0.0, float $z = 0.0, ) { $this->x = $x; $this->y = $y; $this->z = $z; }}

PHP 8

class Point { public function __construct( public float $x = 0.0, public float $y = 0.0, public float $z = 0.0, ) {}}联合类型(Union Types)

Union Types 支持吸收多个不同类型的值,而不是单个类型。
目前PHP已经支持两种分外的联合类型:

Type或null,利用分外?Type语法。
array或Traversable,利用分外iterable类型。

对付类型组合,可以利用在运行时经由验证的原生联合类型声明来代替PHPDoc表明。

https://wiki.php.net/rfc/union_types_v2

支持联合类型之后,将会许可将更多类型信息从 phpdoc 迁移至函数署名。
可以说,泛型之后,联合类型是目前类型声明系统中最大的打破口。

PHP 7

class Number { / @var int|float / private $number; / @param float|int $number / public function __construct($number) { $this->number = $number; }}new Number('NaN'); // O

PHP 8

class Number { public function __construct( private int|float $number ) {}}new Number('NaN'); // TypeErrorMatch表达式

新的match很像switch,并具有以下特性:

Match是一个表达式,表示其结果可以存储在变量中或返回。
Match分支仅支持单行表达式,不须要break; 语句。
Match实行严格比较。

https://wiki.php.net/rfc/match_expression_v2

PHP 7

switch (8.0) { case '8.0': $result = "Oh no!"; break; case 8.0: $result = "This is what I expected"; break;}echo $result;//> Oh no!

PHP 8

echo match (8.0) { '8.0' => "Oh no!", 8.0 => "This is what I expected",};//> This is what I expectedNullsafe运算符

现在,开拓者可以利用带有新的nullsafe运算符的调用链来代替null check。
当对链中一个元素的求值失落败时,全体链的实行将中止,并且全体链的求值为null。

https://wiki.php.net/rfc/nullsafe_operator

PHP 7

$country = null;if ($session !== null) { $user = $session->user; if ($user !== null) { $address = $user->getAddress(); if ($address !== null) { $country = $address->country; } }

PHP 8

$country = $session?->user?->getAddress()?->country;字符串与数字的判断更合理

利用==和其他非严格比较运算符对字符串和数字之间做比较时,原来的做法是将字符串逼迫转换为数字,然后对整数或浮点数进行比较。
这会导致许多令人惊异的比较结果,个中最值得把稳的是 0 == "foobar" 返回true。

在新版本中,仅在字符串实际为数字时才利用数字比较,否则将数字转换为字符串,并实行字符串比较。

https://wiki.php.net/rfc/string_to_number_comparison

PHP 7

0 == 'foobar' // true

PHP 8

0 == 'foobar' // false内部函数的类型缺点同等

在新版本中,如果参数验证失落败,大多数内部函数将抛出Error非常。

https://wiki.php.net/rfc/consistent_type_errors

PHP 7

strlen([]); // Warning: strlen() expects parameter 1 to be string, array givenarray_chunk([], -1); // Warning: array_chunk(): Size parameter expected to be greater than 0

PHP 8

strlen([]); // TypeError: strlen(): Argument #1 ($str) must be of type string, array givenarray_chunk([], -1); // ValueError: array_chunk(): Argument #2 ($length) must be greater than 0JIT编译

PHP 8引入了两个JIT编译引擎。
Tracing JIT的表现最出色,它在综合基准测试中的性能提高到大约3倍,在某些特定的传统运用程序中提高到1.5–2倍。
范例的运用程序性能与PHP 7.4相称。

JIT对PHP 8性能的贡献

类型系统和缺点处理方面的改进对算术/按位运算符进行更严格的类型检讨(https://wiki.php.net/rfc/arithmetic_operator_type_checks)抽象特色方法验证(https://wiki.php.net/rfc/abstract_trait_method_validation)魔术方法的精确署名(https://wiki.php.net/rfc/magic-methods-signature)重分类引擎警告(https://wiki.php.net/rfc/engine_warnings)不兼容方法署名的致命缺点(https://wiki.php.net/rfc/lsp_errors)@运算符不再使致命缺点静默。
用私有方法继续(https://wiki.php.net/rfc/inheritance_private_methods)稠浊类型(https://wiki.php.net/rfc/mixed_type_v2)静态返回类型(https://wiki.php.net/rfc/static_return_type)内部函数类型(https://externals.io/message/106522)不透明的工具代替Curl、Gd、Sockets、OpenSSL、XMLWriter和XML扩展的资源其他语法调度和改进在参数列表(https://wiki.php.net/rfc/trailing_comma_in_parameter_list)和利用闭包的列表(https://wiki.php.net/rfc/trailing_comma_in_closure_use_list)中许可结尾逗号non-capturing捕获(https://wiki.php.net/rfc/non-capturing_catches)变量语法调度(https://wiki.php.net/rfc/variable_syntax_tweaks)将命名空间名称视为单个令牌(https://wiki.php.net/rfc/namespaced_names_as_token)Throw现在是表达式(https://wiki.php.net/rfc/throw_expression)在工具上许可::class(https://wiki.php.net/rfc/class_name_literal_on_object)新的类、接口和函数Weak Map类(https://wiki.php.net/rfc/weak_maps)Stringable接口(https://wiki.php.net/rfc/stringable)str_contains()、str_starts_with()、str_ends_with()(https://wiki.php.net/rfc/str_contains)fdiv()(https://github.com/php/php-src/pull/4769)get_debug_type()(https://wiki.php.net/rfc/get_debug_type)get_resource_id()(https://github.com/php/php-src/pull/54270token_get_all()工具实现(https://wiki.php.net/rfc/token_as_object)下载

要下载PHP 8的源代码,请访问下载页面(https://www.php.net/downloads)。
Windows二进制文件位于Windows版PHP网站(http://windows.php.net/download)。
变动列表位于ChangeLog(http://www.php.net/ChangeLog-8.php)。

PHP手册中供应了迁移指南(https://www.php.net/manual/en/migration80.php)。
请查阅它以获取新特性细节和向后不兼容变动的详细列表。

原文链接:https://www.php.net/releases/8.0/en.php

延伸阅读:

PHP与.NET统治Web开拓天下的八个情由-InfoQ

关注我并转发此篇文章,私信我“领取资料”,即可免费得到InfoQ代价4999元迷你书,点击文末「理解更多」,即可移步InfoQ官网,获取最新资讯~