Php/keyword fn

来自菜鸟教程
跳转至:导航、​搜索

PHP fn关键字

Keywords PHP关键字

创建箭头函数:

  <?php
// This only works in PHP 7.4 and above
$str = "Hello World";

  $my_function = fn($a) => $str . $a;
echo $my_function("!");
?>

定义和用法

The fn 关键字用于创建箭头功能。箭头功能仅在PHP 7.4及更高版本中可用。

箭头函数可以访问其创建范围内的所有变量。

箭头函数的一般语法为:

  fn(arguments) => expression to be returned;

Keywords PHP关键字