캐시 클래스
- /*
- * 캐시 클래스 캐시
- * 작성자: Duo Noob
- * 작성 시간: 2006-05-05
- * 예:
- include( "cache.php" );
- $cache = new 캐시(30);
- $cache->cacheCheck();
- echo date("Y-m-d H: i:s");
- $cache->caching();
- */
- 클래스 캐시 {
- //캐시 디렉터리
- var $cacheRoot = "./cache/";
- //캐시 업데이트 시간(초), 0은 캐싱이 없음을 의미합니다.
- var $cacheLimitTime = 0;
- //캐시 파일 이름
- var $cacheFileName = "";
- //캐시 확장자
- var $cacheFileExt = "php";
- /*
- * 생성자
- * int $cacheLimitTime 캐시 업데이트 시간
- */
- function 캐시( $cacheLimitTime ) {
- if( intval( $cacheLimitTime ) )
- $this->cacheLimitTime = $cacheLimitTime;
- $this->cacheFileName = $this->getCacheFileName();
- ob_start();
- }
- /*
- * 캐시된 파일이 설정된 업데이트 시간 이내인지 확인
- * 반환: 업데이트 시간 이내이면 파일 내용을 반환하고, 그렇지 않으면 실패 반환
- */
- 함수 캐시체크(){
- if( file_exists( $this->cacheFileName ) ) {
- $cTime = $this->getFileCreateTime( $this->cacheFileName );
- if( $cTime $this ->cacheLimitTime > time() ) {
- echo file_get_contents( $this->cacheFileName );
- ob_end_flush();
- exit;
- }
- }
- return false ;
- }
- /*
- * 캐시 파일 또는 정적 출력
- * 문자열 $staticFileName 정적 파일 이름(상대 경로 포함)
- */
- 함수 캐싱( $staticFileName = "" ){
- if( $this->cacheFileName ) {
- $cacheContent = ob_get_contents();
- //echo $cacheContent;
- ob_end_flush();
-
- if( $ staticFileName ) {
- $this->saveFile( $staticFileName, $cacheContent );
- }
-
- if( $this->cacheLimitTime )
- $this->saveFile( $ this->cacheFileName, $cacheContent );
- }
- }
- /*
- * 캐시 파일 지우기
- * string $fileName은 파일 이름(함수 포함) 또는 전체(모두)를 지정합니다.
- * 반환: 삭제에 성공하면 true를 반환하고, 그렇지 않으면 false를 반환합니다.
- */
- functionclearCache( $fileName = "all" ) {
- if( $fileName != "all" ) {
- $ fileName = $this->cacheRoot . strtoupper(md5($fileName)).".".$this->cacheFileExt;
- if( file_exists( $fileName ) ) {
- return @unlink ( $fileName );
- }else return false;
- }
- if ( is_dir( $this->cacheRoot ) ) {
- if ( $dir = @opendir( $this->cacheRoot ) ) {
- while ( $file = @readdir( $dir ) ) {
- $check = is_dir( $file );
- if ( !$check )
- @unlink( $this-> ;cacheRoot . $file );
- }
- @closedir( $dir );
- true 반환;
- }else{
- false 반환;
- }
- }else{
- return false;
- }
- }
- /*
- * 현재 동적 파일을 기반으로 캐시 파일 이름 생성
- */
- function getCacheFileName() {
- return $this->cacheRoot . strtoupper(md5($_SERVER["REQUEST_URI"])).".".$this->cacheFileExt;
- }
- /*
- * 캐시 파일 생성 시간
- * 문자열 $fileName 캐시 파일 이름(상대 경로 포함)
- * 반환: 파일 생성 시간(초), 파일이 없으면 0을 반환합니다.
- */
- function getFileCreateTime( $fileName ) {
- if( !trimm($fileName ) ) return 0;
-
- if( file_exists( $fileName ) ) {
- return intval(filemtime( $fileName ));
- }else return 0 ;
- }
- /*
- * 파일 저장
- * string $fileName 파일 이름(상대 경로 포함)
- * string $text 파일 콘텐츠
- * 반환: 성공 시 true, 실패 시 false
- */
- function saveFile($fileName, $text) {
- if( ! $fileName || ! $text ) return false;
-
- if( $this-> ;makeDir( dirname( $fileName ) ) ) {
- if( $fp = fopen( $fileName, "w" ) ) {
- if( @fwrite( $fp, $text ) ) {
- fclose ($fp);
- true 반환
- }else {
- fclose($fp);
- false 반환;
- }
- }
- }
- false 반환;
- }
- /*
- * 지속적으로 디렉터리 생성
- * string $dir 디렉터리 문자열
- * int $mode 권한 번호
- * 반환: 성공적으로 생성되었거나 모두 생성된 경우 true, 그렇지 않으면 false
- */
- function makeDir( $dir, $mode = "0777" ) {
- if( ! $dir ) return 0;
- $dir = str_replace( "\", "/ ", $dir );
-
- $mdir = "";
- foreach(explore( "/", $dir ) as $val ) {
- $mdir .= $val."/" ;
- if( $val = = ".." || $val == "." || Trim( $val ) == "" ) 계속;
-
- if( !file_exists( $mdir ) ) {
- if(! @mkdir( $mdir, $mode )){
- return false;
- }
- }
- }
- return true;
- }
- }
- ?>
-
-
코드 복사
|