PHP fn Keyword

❮ PHP Keywords

Example

Create an arrow function:

<?php
// This only works in PHP 7.4 and above
$str = "Hello World";
$my_function = fn($a) => $str . $a;
echo $my_function("!");
?>

Definition and Usage

The fn keyword is used to create arrow functions. Arrow functions are only available in PHP versions 7.4 and up.

Arrow functions have access to all variables from the scope in which they were created.

The general syntax of an arrow function is:

fn(arguments) => expression to be returned;

❮ PHP Keywords
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.