Elgg\Cache\SimpleCache::getPath PHP 메소드

getPath() 개인적인 메소드

Returns the path to where views are simplecached.
private getPath ( ) : string
리턴 string
    private function getPath()
    {
        $realpath = realpath($this->config->getCachePath());
        return rtrim($realpath, DIRECTORY_SEPARATOR) . "/views_simplecache";
    }