htmlspecialchars($string, ENT_COMPAT | ENT_HTML401, 'UTF-8', false);
htmlspecialchars($string, double_encode: false);
class PostsController
{
/**
* @Route("/api/posts/{id}", methods={"GET"})
*/
public function get($id) { /* ... */ }
}
class PostsController
{
#[Route("/api/posts/{id}", methods: ["GET"])]
public function get($id) { /* ... */ }
}
现在可以使用 PHP 的原生语法来使用结构化元数据,而不是 PHPDoc 注解。
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;
}
}
class Point {
public function __construct(
public float $x = 0.0,
public float $y = 0.0,
public float $z = 0.0,
) {}
}
更少的样板代码来定义和初始化属性。
class Number {
/** @var int|float */
private $number;
/**
* @param float|int $number
*/
public function __construct($number) {
$this->number = $number;
}
}
new Number('NaN'); // 正确
class Number {
public function __construct(
private int|float $number
) {}
}
new Number('NaN'); // TypeError
现在可以使用在运行时进行验证的原生联合类型声明,而不是 PHPDoc 注解来表示类型的组合。
switch (8.0) {
case '8.0':
$result = "Oh no!";
break;
case 8.0:
$result = "This is what I expected";
break;
}
echo $result;
//> Oh no!
echo match (8.0) {
'8.0' => "Oh no!",
8.0 => "This is what I expected",
};
//> This is what I expected
新的匹配表达式类似于 switch,并具有以下特性:
$country = null;
if ($session !== null) {
$user = $session->user;
if ($user !== null) {
$address = $user->getAddress();
if ($address !== null) {
$country = $address->country;
}
}
}
$country = $session?->user?->getAddress()?->country;
现在可以使用新的空安全运算符来进行链式调用,而不是空检查条件。当链中一个元素的计算失败时,整个链的执行将中止,并且整个链将计算结果为 null。
0 == 'foobar' // true
0 == 'foobar' // false
与数字字符串比较时,PHP 8 使用数字比较。否则,它将数字转换为字符串并使用字符串比较。
strlen([]); // Warning: strlen() expects parameter 1 to be string, array given
array_chunk([], -1); // Warning: array_chunk(): Size parameter expected to be greater than 0
strlen([]); // TypeError: strlen(): 参数 #1 ($str) 必须是字符串类型,但给定的是数组
array_chunk([], -1); // ValueError: array_chunk(): 参数 #2 ($length) 必须大于 0
现在大多数内部函数在参数验证失败时都会抛出 Error 异常。
PHP 8 引入了两个 JIT 编译引擎。其中,追踪 JIT 表现最为出色,在合成基准测试中性能提升约 3 倍,在一些特定的长时间运行的应用程序中性能提升 1.5 到 2 倍。典型应用程序的性能与 PHP 7.4 相当。