jDateTime::filterArray PHP Method

filterArray() private static method

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);
    }