下面小編就為大家帶來一篇php兩個多維陣列組合遍歷的實例。小編覺得蠻不錯的,現在就分享給大家,也給大家做個參考。一起跟著小編過來看看吧
實例如下:
$res = $this->LoanRecord->searchloan($conditions,$columns,$page,$this->num,$user_id); foreach ($res[1] as $key => $value) { if(!empty($value['b']['id'])){ $result_day = $this->LoanRecord ->getLastDay($value['b']['id']); $res[1][$key]['m'] = $result_day['m']; } }
匯出表格單獨查詢,在寫入excel時單獨查詢遍歷
#以上是php實作兩個多維數組組合遍歷的實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!