간단 하고 실 용적 인 PHP 텍스트 캐 시 클래스 인 스 턴 스
5425 단어 php텍스트 캐 시 클래스
cache.inc.php
<?php
class Cache {
/**
* $dir :
* $lifetime : ,
* $cacheid : ,
* $ext : ( ),
*/
private $dir;
private $lifetime;
private $cacheid;
private $ext;
/**
* , ,
*/
function __construct($dir='',$lifetime=1800) {
if ($this--->dir_isvalid($dir)) {
$this->dir = $dir;
$this->lifetime = $lifetime;
$this->ext = '.Php';
$this->cacheid = $this->getcacheid();
}
}
/**
*
*/
private function isvalid() {
if (!file_exists($this->cacheid)) return false;
if (!(@$mtime = filemtime($this->cacheid))) return false;
if (mktime() - $mtime > $this->lifetime) return false;
return true;
}
/**
*
* $mode == 0 ,
* $mode == 1 , ( $content )
* $mode == 2 , (fopen ile_get_contents) ( )
*/
public function write($mode=0,$content='') {
switch ($mode) {
case 0:
$content = ob_get_contents();
break;
default:
break;
}
ob_end_flush();
try {
file_put_contents($this->cacheid,$content);
}
catch (Exception $e) {
$this->error(' ! !');
}
}
/**
*
* exit() ,
* ob_start()
*/
public function load() {
if ($this->isvalid()) {
echo "This is Cache. ";
// , ?????
require_once($this->cacheid);
//echo file_get_contents($this->cacheid);
exit();
}
else {
ob_start();
}
}
/**
*
*/
public function clean() {
try {
unlink($this->cacheid);
}
catch (Exception $e) {
$this->error(' ! !');
}
}
/**
*
*/
private function getcacheid() {
return $this->dir.md5($this->geturl()).$this->ext;
}
/**
*
*/
private function dir_isvalid($dir) {
if (is_dir($dir)) return true;
try {
mkdir($dir,0777);
}
catch (Exception $e) {
$this->error(' ! !');
return false;
}
return true;
}
/**
* url
*/
private function geturl() {
$url = '';
if (isset($_SERVER['REQUEST_URI'])) {
$url = $_SERVER['REQUEST_URI'];
}
else {
$url = $_SERVER['Php_SELF'];
$url .= empty($_SERVER['QUERY_STRING'])?'':'?'.$_SERVER['QUERY_STRING'];
}
return $url;
}
/**
*
*/
private function error($str) {
echo $str;
}
}
?>
demo.php
<php
/*
*
*/
------------------------------------Demo1-------------------------------------------
require_once('cache.inc.php');
$cachedir = './Cache/'; //
$cache = new Cache($cachedir,10); // , $cache = new Cache($cachedir);
if ($_GET['cacheact'] != 'rewrite') // , xx.Php?cacheact=rewrite , ,
$cache->load(); // ,
//
echo date('H:i:s jS F');
//
$cache->write(); // ,
------------------------------------Demo2-------------------------------------------
require_once('cache.inc.php');
$cachedir = './Cache/'; //
$cache = new Cache($cachedir,10); // , $cache = new Cache($cachedir);
if ($_GET['cacheact'] != 'rewrite') // , xx.Php?cacheact=rewrite , ,
$cache->load(); // ,
//
$content = date('H:i:s jS F');
echo $content;
//
$cache->write(1,$content); // ,
------------------------------------Demo3-------------------------------------------
require_once('cache.inc.php');
define('CACHEENABLE',true);
if (CACHEENABLE) {
$cachedir = './Cache/'; //
$cache = new Cache($cachedir,10); // , $cache = new Cache($cachedir);
if ($_GET['cacheact'] != 'rewrite') // , xx.Php?cacheact=rewrite , ,
$cache->load(); // ,
}
//
$content = date('H:i:s jS F');
echo $content;
//
if (CACHEENABLE)
$cache->write(1,$content); // ,
?>
총결산이상 은 이 글 의 모든 내용 입 니 다.본 고의 내용 이 여러분 의 학습 이나 업무 에 어느 정도 참고 학습 가 치 를 가지 기 를 바 랍 니 다.여러분 의 저희 에 대한 지지 에 감 사 드 립 니 다.더 많은 내용 을 알 고 싶다 면 아래 링크 를 보 세 요.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Laravel - 변환된 유효성 검사 규칙으로 API 요청 제공동적 콘텐츠를 위해 API를 통해 Laravel CMS에 연결하는 모바일 앱(또는 웹사이트) 구축을 고려하십시오. 이제 앱은 CMS에서 번역된 콘텐츠를 받을 것으로 예상되는 다국어 앱이 될 수 있습니다. 일반적으로 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.