Skip to content

Instantly share code, notes, and snippets.

@henrytran9x
Created February 25, 2016 02:59
Show Gist options
  • Save henrytran9x/8685df35bc4f4dbbdd8f to your computer and use it in GitHub Desktop.
Save henrytran9x/8685df35bc4f4dbbdd8f to your computer and use it in GitHub Desktop.
Filter regex keys array
<?php
function array_filter_key($matches,array $array)
{
$matchedKeys = preg_grep($matches, array_keys($array));
return array_intersect_key($array, array_flip($matchedKeys));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment