Skip to content

Instantly share code, notes, and snippets.

@Shinpeim
Created April 1, 2015 18:44
Show Gist options
  • Save Shinpeim/73af505d651e99db0ae4 to your computer and use it in GitHub Desktop.
Save Shinpeim/73af505d651e99db0ae4 to your computer and use it in GitHub Desktop.
<?php
$arr1 = [1, 1, 0];
$arr2 = [1, 0, 0];
var_dump(array_map(
function($a, $b){
if ($a == $b) {
return 1;
} else {
return 0;
}
},
$arr1,
$arr2
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment