Creates an anonymous function from the parameters passed, and returns a unique name for it.
Usually these parameters will be passed as single quote delimited strings. The reason for using single quoted strings, is to protect the variable names from parsing, otherwise, if you use double quotes there will be a need to escape the variable names, e.g. \$avar.
args
The function arguments.
code
The function code.
Or, perhaps to have general handler function that can apply a set of operations to a list of parameters:
Example 2. Making a general processing function with create_function()
The above example will output:
|
But perhaps the most common use for of lambda-style (anonymous) functions is to create callback functions, for example when using array_walk() or usort()
Example 3. Using anonymous functions as callback functions
The above example will output:
an array of strings ordered from shorter to longer
The above example will output:
sort it from longer to shorter
The above example will output:
|