0

我有这个功能:

function coin_matrix($test, $revs) {
    $coin = array();

    for ($i = 0; $i < count($test); $i++) {
        foreach ($revs as $j => $rev) {
            foreach ($revs as $k => $rev) {
            if ($j != $k && 
                $test[$i][$j] != null && 
                $test[$i][$k] != null) {

                $coin[$test[$i][$j]][$test[$i][$k]] += 1 / ($some_var - 1);
                }
            }
        }
    }
    return $coin;
}

在哪里

$test = array(
array('3'=>'1','5'=>'1'),
array('3'=>'2','5'=>'2'),
array('3'=>'1','5'=>'2'),
array('3'=>'1','5'=>'1'));

$revs = array('3'=>'A','5'=>'B');

问题是当我运行它时,它会返回这些错误(通知):

注意:未定义的索引:第 10 行的 1

注意:未定义的索引:第 10 行的 1

注意:未定义的索引:第 10 行的 2

注意:未定义的索引:第 10 行的 2

注意:未定义的索引:第 10 行的 2

注意:未定义的索引:第 10 行的 1

这是这一行:$coin[$test[$i][$j]][$test[$i][$k]] += 1 / ($some_var - 1);

问题是函数最后返回正确的矩阵(数组),如果我测试是否$coin[$test[$i][$j]][$test[$i][$k]]存在,那么它不再返回它。

非常感谢任何建议!

谢谢!

4

5 回答 5

5
$coin[$test[$i][$j]][$test[$i][$k]] += 1 / ($some_var - 1);

警告是由+=. +=需要在添加之前查找元素,并且您在$coin第一次访问它们时还没有初始化任何元素。

于 2010-04-20T15:58:21.757 回答
3

您可以/应该测试以确保$coin[$test[$i][$j]][$test[$i][$k]]在增加值之前设置。这不应改变代码的功能,但会使通知消失(这是一种很好的做法)。

function coin_matrix($test, $revs) {
    $coin = array();

    for ($i = 0; $i < count($test); $i++) {
        foreach ($revs as $j => $rev) {
            foreach ($revs as $k => $rev) {
            if ($j != $k && 
                $test[$i][$j] != null && 
                $test[$i][$k] != null) {

                    // new tests go here
                    if(!isset(coin[$test[$i][$j]])) 
                    {
                        coin[$test[$i][$j]] = array(); 
                    }
                    if(!isset(coin[$test[$i][$j]][$test[$i][$k]])) 
                    {
                        coin[$test[$i][$j]][$test[$i][$k]] = 0; 
                    }

                    $coin[$test[$i][$j]][$test[$i][$k]] += 1 / ($some_var - 1);
                }
            }
        }
    }
    return $coin;
}
于 2010-04-20T15:52:00.060 回答
1

我认为问题在于您试图将 $coin 用作二维数组。

如果你希望它是二维的,$coin 必须是一个数组数组。

function coin_matrix($test, $revs) {

    $coin = array();

    for ($i = 0; $i < count($test); $i++) {
        foreach ($revs as $j => $rev) {
            foreach ($revs as $k => $rev) {
            if ($j != $k && 
                $test[$i][$j] != null && 
                $test[$i][$k] != null) {
                // add this.
                if ($coin[$test[$i][$j]] == null){
                    $coin[$test[$i][$j]] = array();
                }
                // end
                $coin[$test[$i][$j]][$test[$i][$k]] += 1 / ($some_var - 1);
                }
            }
        }
    }
    return $coin;
}
于 2010-04-20T15:59:05.627 回答
0

我不太了解,但我可以建议您使用

function coin_matrix($test, $revs) {
    $coin = array();

    for ($i = 0; $i < count($test); $i++) {
        foreach ($revs as $j => $rev) {
            foreach ($revs as $k => $rev) {
            if (($j != $k) && 
                ($test[$i][$j] != null) && 
                ($test[$i][$k] != null)) {

                $coin[$test[$i][$j]][$test[$i][$k]] += 1 / ($some_var - 1);
                }
            }
        }
    }
    return $coin;
}
于 2010-04-20T15:50:37.037 回答
0

您是否考虑过用 foreach 循环替换 for 循环?例如:

foreach( $tests as $i => $test )

这样做的好处是在 $test[ $i ] 中有一个值。然后,在您的$test[ $i ][ $j ] == null块中,放置以下内容:

        if ($j != $k && 
            // I suspect that this will cause errors too.
            // Do yourself a favor and add this sanity check.
            isset( $test[$j] ) && $test[$j] != null && 
            isset( $test[$k] ) && $test[$k] != null) {

                $currentK = $test[$k];
                $currentJ = $test[$j];
                // Use debug lines if setting things directly won't work
                if( !isset( $coin[ $currentJ ] ) || !is_array( $coin[ $currentJ ] ) )
                {
                    // $coin[ $currentJ ] = array();
                    die( "<pre>$currentK $currentJ \n" .  print_r( $coin ) );
                }
                $currentCoin =& $coin[ $currentJ ];
                if( !isset( $currentCoin [ $currentK ] ) || 
                    !is_array( $currentCoin [ $currentK ] ) )
                {
                    // Just curious, but when doing these checks before,
                    // did you remember to assign a numeric value here?
                    // 
                    // $currentCoin[ $currentK ] = 0;
                    die( "<pre>$currentK $currentJ \n" .  print_r( $coin ) );
                }
                $currentCoin[ $currentK ] += 1 / ($some_var - 1);
            }
        }
于 2010-04-20T16:17:33.837 回答