使用此代码:
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行)。 如果这是解决问题的好方法。