[PHP函数]⑧--递归函数

[PHP函数]⑧--递归函数_第1张图片
Paste_Image.png
function test($i)
{
    echo $i . "
"; --$i; if ($i >= 0) { test($i); } } test(3);
Paste_Image.png
function test($i)
{
    echo $i . "
"; if ($i >= 0) { test($i - 1); } echo $i . "
"; } test(3);

__FUNCTION__

function test($i)
{
    echo $i . "
"; if ($i >= 0) { $func=__FUNCTION__; $func($i-1); } echo $i . "
"; } test(3);
Paste_Image.png

你可能感兴趣的:([PHP函数]⑧--递归函数)