TestTimberImage::is_gif PHP 메소드

is_gif() 공개 정적인 메소드

public static is_gif ( $file )
    public static function is_gif($file)
    {
        $file = strtolower($file);
        if (strpos($file, '.gif') > 0) {
            return true;
        }
        return false;
    }