Subversion Repositories php_utils

Rev

Rev 5 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5 Rev 13
Line 37... Line 37...
37
        foreach ($array as &$a) {
37
        foreach ($array as &$a) {
38
                if (strpos($a, $substr) === false) $ret[] = $a;
38
                if (strpos($a, $substr) === false) $ret[] = $a;
39
        }
39
        }
40
        return $ret;
40
        return $ret;
41
}
41
}
42
 
-
 
43
?>
-