PHP fn 关键字
实例
创建箭头函数:
<?php
// This only works in PHP 7.4 and above
$str = "Hello World";
$my_function = fn($a) => $str . $a;
echo $my_function("!");
?>
// This only works in PHP 7.4 and above
$str = "Hello World";
$my_function = fn($a) => $str . $a;
echo $my_function("!");
?>
定义和用法
fn
关键字用于创建箭头函数。 箭头函数仅在 PHP 7.4 及更高版本中可用。
箭头函数可以访问创建它们的范围内的所有变量。
箭头函数的一般语法是:
fn(arguments) => expression to be returned;