Skip to content

Instantly share code, notes, and snippets.

@ruliarmando
Created May 15, 2013 09:52
Show Gist options
  • Save ruliarmando/5582861 to your computer and use it in GitHub Desktop.
Save ruliarmando/5582861 to your computer and use it in GitHub Desktop.
<?php
$array = array(
array(2,3,4,5,6,7,8),
array(9,10,11,12,13,14,15),
);
echo "<pre>";
print_r($array);
echo "</pre>";
$d = array_map(null, $array);
echo "<pre>";
print_r($d);
echo "</pre>";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment