MatthiasMullie\Minify\Minify::canImportFile PHP 메소드

canImportFile() 보호된 메소드

Check if the path is a regular file and can be read.
protected canImportFile ( string $path ) : boolean
$path string
리턴 boolean
    protected function canImportFile($path)
    {
        return strlen($path) < PHP_MAXPATHLEN && @is_file($path) && is_readable($path);
    }