Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bfodeke/9ee9be486f0200fca5bc1d5f6bf240d4 to your computer and use it in GitHub Desktop.
Save bfodeke/9ee9be486f0200fca5bc1d5f6bf240d4 to your computer and use it in GitHub Desktop.
// Filter out array keys that aren't numeric.
$lid_keys = array_filter(array_keys($values), function ($k) {
return is_numeric($k);
});
$lid_values = array_intersect_key($values, array_flip($lid_keys));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment