예제 #1
0
	public function SetCacheDir( $dir ){

		if( is_dir($dir) && is_writable($dir) ){
			$dir = str_replace('\\','/',$dir);
			self::$cache_dir = rtrim($dir,'/').'/';
			return true;
		}

	}