Skip to content

Instantly share code, notes, and snippets.

@ruliarmando
Created May 15, 2013 09:54
Show Gist options
  • Save ruliarmando/5582872 to your computer and use it in GitHub Desktop.
Save ruliarmando/5582872 to your computer and use it in GitHub Desktop.
<?php
#testing array map to combine different length arrays
$data1 = array(1,2,3,4,5);
$data2 = array('satu', 'dua', 'tiga', 'empat');
$map = array_map(null, $data1, $data2);
echo "<pre>";
print_r($map);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment