Jump to content

Php Recursion Question


ayaya

Recommended Posts

exit f(2)

echo after: 1;

exit f(1);

echo after: 0;

 

Thank you for your help. But if exit f(2) and f(1), How comes the result after "afer"? I still don't understand it. Sorry I'm very stupid...

Edited by ayaya
Link to comment
Share on other sites

Each invocation of the function is a separate occurance and gets its own local variables. The recursive call is NOT modifying $a. For that matter, you are not modifying it locally. If you want the recursive call to affect the local variable, you would have to pass by reference or return it:

 

function f($a)
{
  if($a<2)
  {
        echo "before:".$a."</br>";
        $a = f($a+1);
        echo  "after:".$a."</br>";
       }
  return $a;
}
f(0);

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.