Skip to content

Instantly share code, notes, and snippets.

@noweh
Last active February 9, 2022 13:56
Show Gist options
  • Save noweh/89d4a791a82ac9a8f5dbffa96ef6a85d to your computer and use it in GitHub Desktop.
Save noweh/89d4a791a82ac9a8f5dbffa96ef6a85d to your computer and use it in GitHub Desktop.
Example of using PHP Arrow functions
<?php
$foo = 'foo';
$functions = [
'function1' => function ($bar) use ($foo) {
return $foo . $bar;
},
'function2' => fn ($bar) => $foo . $bar
];
foreach ($functions as $function) {
echo $function("bar");
// will output "foobar" twice
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment