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

Shameer's Blog:
PHP 5.3 : Practical look into Lambda functions and closures
Dec 30, 2010 @ 17:11:26

For those out there still coming to grips with some of what PHP 5.3 has to offer, I'd suggest checking out this new article from Shameer about using lambdas and closures along with some examples putting them into action.

PHP 5.3 packaged the power of functional programming by adding support for lambda functions and closures. You will be familiar with them in javascript. In this article we will have a look into these features and its usages.

He starts with explanations of what they are with simple code examples showing their use - a lambda assigned to a variable and closures with the "use" keyword. He shows how they can be used in application prototyping, making handy callback functions and includes a practical example of finding the factorial of a number using a lambda.

tagged: lambda closure tutorial practical example

Link:


Trending Topics: