PHP Recursive Function
The programming languages provide the use of several functionalities that enable us to develop simple and complicated applications. The functionalities have been implemented in the program using keywords that are written in the statement to satisfy the requirement. The functionalities endorse the application development, which is facilitated by the logic. In this article, we are going to learn about PHP Recursive Function. Recursion may be considered an approach that lets us call the function by the statement written. Recursion is the functionality that is supported by languages like C/C++. We will be implementing recursion in PHP using the function. Before we get into the depth of recursion, keep in mind that the actual meaning of recursion is in programming terms. Below we are learning about PHP recursive function examples:
Examples of PHP Recursive Function
Below are the examples of PHP recursive functions:
ADVERTISEMENT Popular Course in this category PHP DEVELOPER - Specialization | 8 Course Series | 3 Mock TestsStart Your Free Software Development Course
Web development, programming languages, Software testing & others
1. Program to Print Number
To understand the concept of recursion, let us consider some examples. In this example, we will be using the method to print the number, but the only way it will be different from the other program is by the use of recursion in this. This is because we will be calling the function from the statement defined within the same function. To provide the functionality of recursion, we will be putting the login in the way so that it calls the function over and over till a particular condition gets satisfied. In normal cases where we need to implement the recursion, we simply do that by using the loop, but when it comes to implementing the concept of looping without the loop, we can achieve the same functionality using the recursion.
The example that we are going to use in printing the numbers will be very useful to use to perform recursion without using the loop statement. The program will first define the function that will be used to implement the recursion mechanism. The program will be having the function within it with the same name, and that function will be called by using the function defined within it. Though the below program looks simple, it will be very helpful to fortify your understanding of recursive functions. Below is the code of the program that will be used to print the numbers.
Code:
<?php function show_number($digit) { if($digit<8){ echo "The number is $digit <br/>"; show_number($digit+1); } } show_number(1); ?>
This program will be printing the number from one to seven, and the string “The number is” will be there before the number is printed. In this program, the function used to print the number is name show_number, and the digit is the name of the variable that will help the show_number function get some value that will eventually lead to invoking it. The IF statement is used to perform the condition checking. The program will keep on executing until the fixed value is stored in the digit variable is less than eight. Once the value stored in it exceeds the value of seven, the condition that must be satisfied to execute the program further will go false, and the program will be terminated. Below is the output of this program.
Output:
2. Program to Find Factorial Number by Recursive Function
In the last program, we learned how to leverage recursion to print the number. Now in this program, we will learn how to change the logic of the application to find the factorial. Before we begin to write code for calculating factorial, it is important to understand what is factorial. Factorial of any number is the value which is obtained by reducing the number by one and then multiplying the outcome by the number, and it has to be repeated till one. For example, if we need to calculate the factorial of 4, it can be calculated using 4*3*2*1. So the outcome will be 24. In the below program, the value will be given in the program. The program will process the value to calculate the outcome of the factorial. The value will be passed through the function, and then all the logic is written will be imposed on it to calculate the outcome. Below is the program, so let’s proceed to have a look at it.
Code:
<?php function calculate_fact($val) { if ($val === 0) { return 1; } else { return $val * calculate_fact($val-1); } } echo "The factorial is of the given number is". calculate_fact(4); ?>
Output:
The above-written code is the implementation of the factorial using PHP. The name of the function is calculate_fact that will be used to calculate the factorial. The function with the same name has been called within it that is used to implement the mechanism of factorial in the program. Val is the variable that will be storing the value of which we have to find the factorial. We have used the IF condition checking to make sure that it is meeting the requirements that are considered essential when it comes to calculating the factorial of any value. In the very last line, the main call of the calculate_fact function has been done that has invoked the functionality defined in this function. At this time, we have passed four as we wanted to calculate the factorial of four. In case if you want to try this code with different values and replace the digit 4 in this program with the value of which you want to find the factorial.
Conclusion
The function recursion is considered something very useful when there is any need in the program to bring the recursion functionality without using the loops. Though we have used two of the simple programs that use recursion to calculate the factorial and print the numbers, there are way too many features introduced in the application using this function recursion.
Recommended Article
This is a guide to PHP Recursive Function. Here we discuss the introduction to PHP Recursive Function examples along with code implementation and output. You can also go through our other suggested articles to learn more –
- Palindrome in PHP (Examples)
- What is Abstract Class in PHP?
- Socket Programming in PHP with Methods
- Introduction to Factorial in PHP
The above is the detailed content of PHP Recursive Function. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.
