Is there an alternative to anonymous functions in versions of PHP previous to 5.3.0?
There are two choices.
First is to create a function, inside a function. Unfortunately, it will pollute the global namespace.
The second choice is to use create_function.