public function __construct($lifeTime) { self::$cacheDir = $_SERVER["DOCUMENT_ROOT"] . "/cache/"; if (!is_dir(self::$cacheDir)) { if (mkdir(self::$cacheDir)) { throw new CException(__CLASS__, "Не удается создать папку для Кэша "); } } $this->lifeTime = $lifeTime; }