Skip to content

Instantly share code, notes, and snippets.

@insideone
Created May 15, 2016 13:26
Show Gist options
  • Save insideone/fb0595cfb3874efc67e90e289b02b608 to your computer and use it in GitHub Desktop.
Save insideone/fb0595cfb3874efc67e90e289b02b608 to your computer and use it in GitHub Desktop.
PHP: array_filter_key
<?php
/**
* @param array $ar Фильтруемый массив
* @param string $callback Имя функции-фильтра
* return array Результирующий массив
*/
function array_filter_key($ar, $callback = 'empty')
{
$ar = (array)$ar;
return array_intersect_key($ar, array_flip(array_filter(array_keys($ar), $callback)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment