PHP Recursive Function

PHP also supports recursive function call like C/C++. In such case, we call current function within function. It is also known as recursion.

It is recommended to avoid recursive function call over 200 recursion level because it may smash the stack and may cause the termination of script.

Example 1: Printing number

Output:

1
2
3
4
5

Example 2 : Factorial Number

Output:

120
Next TopicPHP Array




Contact US

Email:[email protected]

PHP Recursive Function
10/30