Skip to content

Instantly share code, notes, and snippets.

@arvindsvt
Created February 14, 2018 16:58
Show Gist options
  • Save arvindsvt/fe35b7c51e27f64e989e044a81832161 to your computer and use it in GitHub Desktop.
Save arvindsvt/fe35b7c51e27f64e989e044a81832161 to your computer and use it in GitHub Desktop.
<?php
function key_values_intersect($values,$keys) {
foreach($keys AS $key) {
$key_val_int[$key] = $values[$key];
}
return $key_val_int;
}
$big = array("first"=>2,"second"=>7,"third"=>3,"fourth"=>5);
$subset = array("first","third");
print_r(key_values_intersect($big,$subset));
?>
http://php.net/manual/en/function.array-intersect.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment