Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Fabian Schmengler's Blog:
Anonymous function calls in PHP
Feb 25, 2011 @ 15:52:27

Fabian Schmengler has a new post today looking a using anonymous function calls in PHP. He relates to to another popular language that allows for dynamic anonymous functions - Javascript.

Anonymous function calls are a well-known pattern in JavaScript but there are also use cases in PHP where they make sense. Of course PHP 5.3 with its Lambda Functions is required!

He includes several little code snippets showing how the anonymous functions work including the "use" keyword functionality that lets you import variables from outside the function. There's a sneaky pass-by-reference in there, so don't get tripped up.

tagged: anonymous function closure introduction tutorial

Link:


Trending Topics: