PHP fn Keyword

PHP Keywords : Create an arrow 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