別のキャッシュ クラス
リリース: 2016-07-25 09:11:15
キャッシュクラス
- /*
- * キャッシュクラスcache
- * 作成者: Duo Noob
- * 作成時間: 2006-05-05
- * 例:
- include( "cache.php" );
- $cache =新しいキャッシュ(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 cache( $cacheLimitTime ) {
- if( intval( $cacheLimitTime ) )
- $ this- >cacheLimitTime = $cacheLimitTime;
- $this->cacheFileName = $this->getCacheFileName();
- ob_start();
- }
- /*
- * キャッシュファイルが設定された更新時間以内かどうかを確認します
- * Return : 更新時間内であればファイルの内容を返し、それ以外の場合は失敗を返します
- */
- function cacheCheck(){
- 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;
- }
- /*
- * キャッシュファイルまたは静的出力
- * string $staticFileName 静的ファイル名 (相対パスを含む)
- */
- function caching( $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指定されたファイル名 (関数を含む) または all (all)
- * 戻り値: クリアに成功した場合は true、それ以外の場合は false
- */
- function clearCache( $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 );
- return true ;
- }else{
- return false;
- }
- }else{
- return false;
- }
- }
- /*
- * 現在の動的ファイルに基づいてキャッシュ ファイル名を生成します
- */
- function getCacheFileName() {
- return $this->cacheRoot .strtoupper(md5($_SERVER["REQUEST_URI"])).".".$this->cacheFileExt;
- }
- /*
- * キャッシュ ファイルの作成時間
- * string $fileName name (相対パスを含む) )
- * 戻り値: ファイル生成時間 (秒)、ファイルが存在しない場合は 0 を返す
- */
- function getFileCreateTime( $fileName ) {
- if( ! トリム($fileName) ) return 0;
-
- if( file_exists( $fileName ) ) {
- return intval(filemtime( $fileName ));
- }else return 0;
- }
- /*
- * ファイルを保存します
- * string $fileName ファイル名 (相対パスを含む)
- * string $text ファイルの内容
- * Return: 成功した場合は 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);
- return true;
- }else {
- fclose($fp);
- return false;
- }
- }
- }
- return false;
- }
- /*
- * ディレクトリを継続的に作成します
- * string $dir ディレクトリstring
- * int $mode 許可番号
- * return : 正常に作成されたか、すべてがビルドされている場合は true を返し、それ以外の場合は false を返します
- */
- function makeDir( $dir, $mode = "0777" ) {
- if( ! $dir ) return 0;
- $dir = str_replace( "\ ", "/", $dir );
-
- $mdir = "";
- foreach(explode( "/", $dir ) as $val ) {
- $mdir .= $val."/";
- if( $val == ".." || $val == "." || trim( $val ) == "" ) continue;
-
- if( ! file_exists( $mdir ) ) {
- if(!@mkdir( $mdir, $mode )){
- return false;
- }
- }
- }
- return true;
- }
- }
- ?>
-
-
コードをコピー
|
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31