Redaxscript\Cache::_validateFile PHP 메소드

_validateFile() 보호된 메소드

validate the file
부터: 3.0.0
protected _validateFile ( string $path = null, integer $lifetime = 3600 ) : boolean
$path string path of the bundle
$lifetime integer lifetime of the bundle
리턴 boolean
    protected function _validateFile($path = null, $lifetime = 3600)
    {
        return filesize($path) && filemtime($path) > time() - $lifetime;
    }