jDateTime::filterArray PHP Метод

filterArray() приватный статический Метод

Filters out an array
private static filterArray ( $needle, $heystack, $always = [] )
    private static function filterArray($needle, $heystack, $always = array())
    {
        return array_intersect(array_merge($needle, $always), $heystack);
    }