php缺少一个函数的参数错误

时间:2016-02-03 08:02:15

标签: php

嗨伙计们我目前很困惑为什么我在编译代码时得到关于缺少参数的错误它给了我这个错误警告:缺少参数5 for print_LCS(),这是我的代码:

这是函数

function print_LCS($b,$x,$i,$j,$k){
    $fLCS=array();

    if ($i==0||$j==0) 
    {
        return 0;
    }
    if ($b[$i][$j]=='c')
    {
        print_LCS($b,$x,$i-1,$j-1);
        $fLCS[$k] = $x[$i-1]." ";
        $k++;


    }
    elseif ($b[$i][$j]=='u') 
    {
        print_LCS($b,$x,$i-1,$j);
    }
    else
    {
        print_LCS($b,$x,$i,$j-1);
    }
    return array($fLCS);
}

这是函数调用:

list($final)=print_LCS($var2,$first,$var3,$var4,$var5);

希望你快速反应的人。非常感谢你。

1 个答案:

答案 0 :(得分:5)

问题是对同一函数的嵌套调用(可能是递归),因为它只传递了4个值。

function print_LCS($b,$x,$i,$j,$k){
    $fLCS=array();

    if ($i==0||$j==0) {
        return 0;
    }
    if ($b[$i][$j]=='c'){
        print_LCS($b,$x,$i-1,$j-1, $XXXXX );/* you need another parameter here or a default value */
        $fLCS[$k] = $x[$i-1]." ";
        $k++;


    } elseif ($b[$i][$j]=='u') {
        print_LCS($b,$x,$i-1,$j,$XXXXX);/* you need another parameter here or a default value */
    } else {
        print_LCS($b,$x,$i,$j-1,$XXXXX);/* you need another parameter here or a default value */
    }
    return array($fLCS);
}

不知道功能是什么,很难说这可能会起作用还是导致更多问题,但你可以在初始声明中提供第五个参数和默认值,例如:

function print_LCS($b,$x,$i,$j,$k=false){/* rest of function */}

这样一来,它会很高兴地在失败的地方继续 - 尽管第五个参数带来的是未知的。