Possible Duplicate:
What is a RECURSIVE Function in PHP?
What is a recursive function in PHP? And are there any good tutorials or examples of a PHP recursive function?
Possible Duplicate:
What is a RECURSIVE Function in PHP?
What is a recursive function in PHP? And are there any good tutorials or examples of a PHP recursive function?
Recursive functions in php are no different than in other languages. It's simply a function that calls itself. There's no real need to show examples of recursion in php because it's just so simple. Take a look at the Wikipedia article. And here's the famous fibonacci numbers example in php.