So I'm programming along in a nice, up to date, object oriented fashion. I regularly make use of the various aspects of OOP that PHP implements but I am wondering when might I need to use closures. Any experts out there that can shed some light on when it would be useful to implement closures?
|
When you will need a function in the future which performs a task that you have decided upon now. For example, if you read a config file and one of the parameters tells you that the The closure can be created in (for example) A hopefully good hypothetical example:
|
|||
|
PHP will support closures natively in 5.3. A closure is good when you want a local function that's only used for some small, specific purpose. The RFC for closures give a good example:
This lets you define the It keeps things organized. Notice how the function itself has no name, it simply is defined and assigned as a reference to But remember, you have to wait for PHP 5.3 :) |
|||||||
|
|
Apart from the technical details, closures are a fundamental pre-requisite for a programming style known as function oriented programming. A closure is roughly used for the same thing as you use an object for in object oriented programming; It binds data (variables) together with some code (a function), that you can then pass around to somewhere else. As such, they impact on the way that you write programs or - if you don't change the way you write your programs - they don't have any impact at all. In the context of PHP, they are a little odd, since PHP already is heavy on the class based, object oriented paradigm, as well as the older procedural one. Usually, languages that have closures, has full lexical scope. To maintain backwards compatibility, PHP is not going to get this, so that means that closures are going to be a little different here, than in other languages. I think we have yet to see exactly how they will be used. |
|||
|
|
|
I like the context provided by troelskn's post. When I want to do something like Dan Udey's example in PHP, i use the OO Strategy Pattern. In my opinion, this is much better than introducing a new global function whose behavior is determined at runtime. http://en.wikipedia.org/wiki/Strategy_pattern You can also call functions and methods using a variable holding the method name in PHP, which is great. so another take on Dan's example would be something like this:
of course, if you want it to be available everywhere, you could just make everything static... |
|||
|
|
|
@john Boker - they are coming, I believe, in PHP 5.3 Here's a good link about them, explaining some of their usefulness http://wiki.php.net/rfc/closures |
|||
|
|
|
I dont think php supports closures without without a helper class. that said, there are a few closure implementations for php. this one http://blinkinglights.org/php/Closure.php give a good explanation of what they are and where they might be useful. |
|||||||
|