php arrow funciton code example Example: php arrow function $numbers = [1,2,3]; $modifier = 5; array_map(fn($x) => $x * $modifier, $numbers);