<?php

   $foo = array(array(), array(), array());
   foreach($foo as $bar) {
       array_push($bar, "baz");
   }
   var_dump($foo);
?>