fileName = $fileName; $this->holdTime = $holdTime; } public function is() { if (!HelperClass::fileExists($this->fileName)) { return false; } clearstatcache(); if (filemtime($this->fileName) < (time() - $this->holdTime)) { unlink($this->fileName); return false; } return true; } protected function file_force_contents() { $args = func_get_args(); $path = str_replace(array('/', '\\'), DIRECTORY_SEPARATOR, $args[0]); $parts = explode(DIRECTORY_SEPARATOR, $path); array_pop($parts); $directory = ''; foreach ($parts as $part): $check_path = $directory . $part; if (is_dir($check_path . DIRECTORY_SEPARATOR) === FALSE) { mkdir($check_path, 0755); } $directory = $check_path . DIRECTORY_SEPARATOR; endforeach; call_user_func_array('file_put_contents', $args); } public function get() { return file_get_contents($this->fileName); } public function set($content) { $this->file_force_contents($this->fileName, $content); } }