Ben bu işlevi vardır:
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;
}
nerede
$test = array(
array('3'=>'1','5'=>'1'),
array('3'=>'2','5'=>'2'),
array('3'=>'1','5'=>'2'),
array('3'=>'1','5'=>'1'));
ve
$revs = array('3'=>'A','5'=>'B');
Sorun bunu çalıştırdığınızda, bu hataları (ilan) döndürür olduğunu:
Notice: Undefined index: 1 hattında 10 at
Notice: Undefined index: 1 hattında 10 at
Notice: Undefined index: 2 hat 10 at
Notice: Undefined index: 2 hat 10 at
Notice: Undefined index: 2 hat 10 at
Notice: Undefined index: 1 hattında 10 at
Bu hattı olan: $coin[$test[$i][$j]][$test[$i][$k]] += 1 / ($some_var - 1);
The problem is that at the end the function returns the correct matrix (array) ve if I test to see if $coin[$test[$i][$j]][$test[$i][$k]]
exists, then it doesn't return it anymore.
Herhangi bir öneri büyük takdir!
Teşekkürler!