Skip to content

Instantly share code, notes, and snippets.

@nomunomu0504
Created January 17, 2018 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nomunomu0504/b5f47dad479fa0ad296cdac7c6e85e9d to your computer and use it in GitHub Desktop.
Save nomunomu0504/b5f47dad479fa0ad296cdac7c6e85e9d to your computer and use it in GitHub Desktop.
<?php
// php7.1
foreach(array_map(null, $array1, $array2) as [$val1, $val2]) {
echo $val1.', '.$val2;
}
// php7.0
foreach(array_map(null, $array1, $array2) as list($val1, $val2)) {
echo $val1.', '.$val2;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment