-4

我正在寻找取消设置数组键的解决方案。我怎样才能在没有任何 php 通知的情况下让它工作?

谢谢

注意:未定义的偏移量:102 行 test1.php 中的 2099

$words = array('one','two','three','four','five','six','seven','0987');


foreach ($words as $key => $value){
    if (preg_match('/[0-9]{4,7}/',$value)){
    unset($words[$key]);
    }
}

$array_a = array(
array('surname'=>'a'),
array('surname'=>'b'),
array('surname'=>'c')
);

$array_b = $words ;


for ($i = 0; $i < count($array_b); $i++){
    if ( count( $array_a[$i % count($array_a)] ) = 1 ){ 
        echo '<pre>';
        echo $array_a[$i % count($array_a)]['surname'] . '    ' . $array_b[$i];
        echo '</pre>';
    }
}
4

1 回答 1

1

有趣的!您需要使用本机函数isset()。尝试这样的事情:

$key = $i % count($array_a);
if(isset($array_a[$key]) && is_array($array_b)){
    for ($i = 0; $i < count($array_b); $i++){
        isset($array_a[$key]['post']){
              echo '<pre>';
              echo $array_a[$key]['post'];
              echo '</pre>';
        } else {
             echo 'Some message error!';
        }
    }

} else {
    echo 'Some message error!';
}
于 2012-10-19T17:49:34.270 回答