PHP递归函数 - 礼貌

时间:2017-09-13 07:01:40

标签: php

使用此代码:

function lookForTheA($str, $pos) {
    if ($str[$pos] == 'A') {
        return 'is in position: '.$pos;
    } else {
        $pos++;
        return lookForTheA($str, $pos);
    }
}

$str = 'BBBBBBBBBBBBBBBBBBBBBBA';
$res = lookForTheA($str, 0);
echo $res;

我需要知道是否需要第二次返回(第6行)。 如果这是解决问题的好方法。

0 个答案:

没有答案