Php recursive functions: the ultimate solution to the return value of php recursive functions

Source: Internet
Author: User
Php recursive functions: the ultimate solution to the return value of php recursive functions
In php recursive functions, there is often a problem that recursive functions do not return values. how can we correctly process the returned values in php recursion? what can we do if php recursive functions do not return values, you can refer to the example analysis in this article.

I. php recursive function return values

Example 1:

Sample code:

Function test ($ I) {$ I-= 4; if ($ I <3) {return $ I;} else {

Test ($ I );}}

Echo test (30 )."";

Note that there is a problem in the else in the above code. if the condition $ I <3, all the functions return $ I will not return the value.

Example 2: modify the php recursive function:

Sample code:

Function test ($ I) {$ I-= 4; if ($ I <3) {return $ I;} else {

Return test ($ I );}}

Echo test (30 )."";

II. php recursive function return value problems

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.