91-9990449935 0120-4256464 |
PHP Recursive FunctionPHP 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 numberOutput: 1 2 3 4 5 Example 2 : Factorial NumberOutput: 120
Next TopicPHP Array
|