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

DevShed:
Fundamentals of Recursion in PHP (Part 1)
May 02, 2006 @ 12:31:46

DevShed has posted their latest tutorial today, a look at some of the basics of recursion and working with it in PHP.

Iteration is a straightforward concept. Recursion is a bit more complicated; it can be defined as a regular function that calls itself. PHP supports recursive functions. This article, the first of three parts, will explain recursive functions and help you see why they are useful.

Considering the important role that recursion plays in most programming languages, and specifically in PHP, over this series I'll be demonstrating how to define and use recursive functions with numerous code samples, thus you can learn quickly how to include them in your own PHP scripts.

If you've never used recursion, you're in luck - they start from the very beginning, explaining it with a simple example of pushing the entire contents of an array (with subarrays) out to a file. They use this exmaple as a base to improve the function, adding the function to write the data out. They finish it off with two handy recursive functions for everyday use - one to escape the entire contents of an array and one that does the same, but checks to see if magic quotes is on.

tagged: tutorial fundamentals recursion basic example array tutorial fundamentals recursion basic example array

Link:


Trending Topics: