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!

Absolute session timeout starts at the time of session creation, while an idle session timeout starts at the time of user's no operation. Absolute session timeout is suitable for scenarios where strict control of the session life cycle is required, such as financial applications; idle session timeout is suitable for applications that want users to keep their session active for a long time, such as social media.

The server session failure can be solved through the following steps: 1. Check the server configuration to ensure that the session is set correctly. 2. Verify client cookies, confirm that the browser supports it and send it correctly. 3. Check session storage services, such as Redis, to ensure that they are running normally. 4. Review the application code to ensure the correct session logic. Through these steps, conversation problems can be effectively diagnosed and repaired and user experience can be improved.

session_start()iscrucialinPHPformanagingusersessions.1)Itinitiatesanewsessionifnoneexists,2)resumesanexistingsession,and3)setsasessioncookieforcontinuityacrossrequests,enablingapplicationslikeuserauthenticationandpersonalizedcontent.

Setting the httponly flag is crucial for session cookies because it can effectively prevent XSS attacks and protect user session information. Specifically, 1) the httponly flag prevents JavaScript from accessing cookies, 2) the flag can be set through setcookies and make_response in PHP and Flask, 3) Although it cannot be prevented from all attacks, it should be part of the overall security policy.

PHPsessionssolvetheproblemofmaintainingstateacrossmultipleHTTPrequestsbystoringdataontheserverandassociatingitwithauniquesessionID.1)Theystoredataserver-side,typicallyinfilesordatabases,anduseasessionIDstoredinacookietoretrievedata.2)Sessionsenhances

PHPsessionscanstorestrings,numbers,arrays,andobjects.1.Strings:textdatalikeusernames.2.Numbers:integersorfloatsforcounters.3.Arrays:listslikeshoppingcarts.4.Objects:complexstructuresthatareserialized.

TostartaPHPsession,usesession_start()atthescript'sbeginning.1)Placeitbeforeanyoutputtosetthesessioncookie.2)Usesessionsforuserdatalikeloginstatusorshoppingcarts.3)RegeneratesessionIDstopreventfixationattacks.4)Considerusingadatabaseforsessionstoragei

Session regeneration refers to generating a new session ID and invalidating the old ID when the user performs sensitive operations in case of session fixed attacks. The implementation steps include: 1. Detect sensitive operations, 2. Generate new session ID, 3. Destroy old session ID, 4. Update user-side session information.


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 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
