PHP Anonymous Functions

Anonymous functions are just like a normal function, but they are only called once and there isn't a way to reference them after that. I don't often have a use for anonymous functions, but they seem to work best when you need to define a callback function.

Read more...