News Feed
Jobs Feed
Sections




News Archive
Giorgio Sironi's Blog:
Stop writing foreach() cycles
February 18, 2010 @ 10:58:28

Giorgio Sironi has a recommendation for developers out there - stop writing foreach loops, there's something better in PHP 5.3+ - closures

There are some array functions which have already been supported at least from Php 4, and that take as an argument a callback whose formal parameters have to be one or two elements of the array. [...] In Php 5.3, callbacks may also be specified as anonymous functions, defined in the middle of other code. These closures are first class citizens, and are treated as you would treat a variable, by passing it around as a method parameter.

He includes some code examples to show you how closures used in callbacks can replace a lot of the other looping normally done by a separate bit of code. Most of the instances are in array functions that take in a callback and apply it to each element in the array (some recursively). The last example shows how to use it in a usort call to make the custom sorting of an array simpler.

0 comments voice your opinion now!
foreach closure tutorial array callback


blog comments powered by Disqus

Similar Posts

PHPit.net: Taking a first look at the AutoCRUD for PHP library

DevShed: Building a Data Validation System with the Prototype Pattern with PHP 5

NETTUTS.com: Everything You Need to Get Started With CodeIgniter

Query7.com: Developing A Blog With CakePHP

PHPHacks.com: How to create an Ajax RSS reader with PHP


Community Events











Don't see your event here?
Let us know!


zendframework2 composer tool database api code conference podcast release functional introduction series opinion community framework language interview example testing development

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework