如何在php中显示两个相关数组的值?

I have two arrays myarray1 has name of images and myarray2 has the address of images, I am going to show image names and their addresses in pagination but do not know how to complete the code.

$pages = array_chunk($myarray1,10);
$addrs = array_chunk($myarray2,10);
$page_number = 1
$count = 0;
    echo'<table>';
    echo'<tr>';
    foreach ($pages[$page_number] as $i) {
      $counter++;
      if ($count == 5) {
         echo '</tr><tr>';
         $counter = 0;
      }
       echo'<td>'.$i. " AND " . <<Value of addrs array goes here
      echo'</td>';
     }
     .......

Try something like this: (note also the counter++ is changed in $count++)

foreach ($pages[$page_number] as $key => $i) {
      $count++;
      if ($count == 5) {
         echo '</tr><tr>';
         echo '</div>';
         echo '</div>';
         $count = 0;
      }
       echo'<td>'.$i. " AND " . $addrs[$page_number][$key]
      echo'</td>';
     }

I'll do it on this way

  $count = 1;
  foreach ($pages[$page_number] as $key => $i) {
  if ($count % 5 == 0) {
     echo '</tr><tr>';
     echo '</div>';
     echo '</div>';
  }
   echo'<td>'.$i. " AND " . $addrs[$page_number][$key]
  echo'</td>';
  $count++; // increase at the end.
 }

if you can try to var_dump those arrays before foreach just to be clear how structure looks like.