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

phpRiot.com:
Using Callback Functions in PHP
Nov 19, 2010 @ 15:50:35

On phpRiot.com today there's a new tutorial posted by Quentin Zervaas showing you how to use the callback functions in PHP (with examples using call_user_func).

A commonly used technique when programming is to use callbacks. A callback is a piece of code that is passed to a function that is later executed by that function. In this article I will show you how to define and call callbacks in PHP, as well as a practical example of how callbacks can be useful.

He starts with a normal script flow that has to wait until everything's done in order to handle the results. He then compares this to using a callback method that can be executed during each iteration of the script, reducing the amount of processing that has to be done after the fact. Code snippets are included of an example that pulls from a remote RSS feed and loops through the results.

tagged: callback tutorial function example

Link:


Trending Topics: