create_function in PHP

Syntax of create_function string create_function(string arguments, string code) Creates an anonymous function with the given arguments and code; returns a generated name for the function. Such anonymous functions (also called lambda functions) are useful for short term callback functions, such as when using usort() Example of create_function