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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.