Prado\I18N\core\MessageSource_gettext::getLastModified PHP 메소드

getLastModified() 보호된 메소드

Just use the file modified time.
protected getLastModified ( $source ) : integer
리턴 integer last modified in unix-time format.
    protected function getLastModified($source)
    {
        if (is_file($source)) {
            return filemtime($source);
        } else {
            return 0;
        }
    }