What Are They? | Lambdas And Closures
…unction parameters, just like with normal functions: 1 <?php 2 3 // A simple 'hello' function 4 $ hello = function ( $ name ) { 5 return ' Hello ' . $ name ; 6 } ; 7 8 echo $ hello ( ' Jill ' ) ; The code above would output something like this...