How are callbacks written in PHP?
|
5
|
|
|
|
|
|
PHP callbacks are structures that "point" to global functions, object methods, or static methods of a class. This allows some level of functional programming in PHP before 5.3. The 3 flavors are:
Here's how you should call a callback function:
Only the string form can be called by appending parenthesis, but this limits the utility and readability of code:
|
||||||
|
|
|
Implementation of a callback is done like so
Displays: Data is: this is my data |
||||
|
|
|
That was fast ;) 35 seconds to answer own question :D I was about to post this solution, But I think you deserve the Shotgun badge ! :) |
||||
|
|
|
One nifty trick that I've recently found is to use PHP's |
||
|
|
|
|
I cringe every time I use Parameters are a coma separated string, the whole function body in a string... Argh... I think they could not have made it uglier even if they tried. Unfortunately, it is the only choice when creating a named function is not worth the trouble. |
||
|
|
|
well... with 5.3 on the horizon, all will be better, because with 5.3, we'll get closures and with them anonymous functions |
||
|
|
|
|
We were discussing this earlier here: http://beta.stackoverflow.com/questions/48570/something-like-a-callback-delegate-function-in-php |
||
|
|
|
|
I would also add a check to see if the function exists:
|
||
|
|
|
|
This did not work for me inside a class. I had to use
Then, to use:
|
||
|
|
