dt250827 2016-02-11 05:44
浏览 100
已采纳

Foreach循环两个不相等的数组

I know how to loop through equal arrays like this

foreach( $codes as $index => $code ) {
   echo 'The Code is '.$code;
   echo 'The Name is '.$names[$index];
}

Not sure how to loop through these 2 arrays and still manage to get all values when both arrays have different number of elements.

$code = array(R9,R10,R11,R12);

$names = array(Robert,John,Steve,Joe,Eddie,Gotham);
  • 写回答

1条回答 默认 最新

  • doubao6681 2016-02-11 06:13
    关注

    ...how to loop through these 2 arrays and still manage to get all values when both arrays have different number of elements.

    You can use for loop for this.

    The solution is:

    • Take length of the longest array as the condition for for loop.
    • Use array_key_exists() function to check whether the index exists in the particular array or not, and display the element accordingly.

    So your code should be like this:

    $code = array("R9","R10","R11","R12");
    $names = array("Robert","John","Steve","Joe","Eddie","Gotham");
    
    $maxLength = count($code) > count($names) ? count($code) : count($names);
    
    for($i = 0; $i < $maxLength; ++$i){
        echo array_key_exists($i, $code) ? 'The Code is '. $code[$i] : "";
        echo array_key_exists($i, $names) ? ' The Name is '. $names[$i] : "";
        echo "<br />";
    }
    

    Output:

    The Code is R9 The Name is Robert
    The Code is R10 The Name is John
    The Code is R11 The Name is Steve
    The Code is R12 The Name is Joe
    The Name is Eddie
    The Name is Gotham
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部