以文件形式缓存php变量的方法
本文实例讲述了以文件形式缓存php变量的方法。分享给大家供大家参考。具体实现方法如下:
[php] view plaincopy
/*
$cache_set = array(
//缓存路径 , 最后要加"/"
'cacheRoot'=>'./cache/',
//缓存时间
'cacheTime'=>20,
//cache type
'cacheType'=>1,
//扩展名
'cacheExe'=>'.php'
);
$cache = new Cache($cache_set);
$a=array('1','2');
$a="aaa";
$b='';
if($cache->cache_is("d")){
$c=$cache->cache_read("d");
echo "c";
print_r($c);
}else {
$b=$cache->cache_data('d',$a);
}
print_r($b);
//$cache->clear("a");
//echo $cache->cache_read("./cache/d.php");
//echo $d;
*/
/**
* 数据缓存类 v1.0
* @author shooke
* 2009-11-13 16:02:26
* 用于缓存数据,如变量,但不能缓存页面
*/
class Cache{
//配置
public $config = array(
//缓存路径
'cacheRoot'=>'./cache/',
//缓存时间
'cacheTime'=>1,
//cache 类型 1串化数据 2变量
'cacheType'=>2,
//扩展名
'cacheExe'=>'.php'
//转换中间变量
);
public $return_name=array();
function __construct($cache_set = array())
{
if(!empty($cache_set)) $this->config=array_merge($this->config,$cache_set);
$this->config['ClassName'] = __CLASS__;
}
public function clear($filename=''){
if (file_exists($this->cache_file($filename))) {
@unlink($this->cache_file($filename));
}elseif (empty($filename)){
$this->clear_dir($this->config['cacheRoot']);
}else{
$this->clear_dir($this->config['cacheRoot'].$filename);
echo $this->config['cacheRoot'].$filename;
}
}
//循环删除路径
private function clear_dir($dir,$to = false)
{
if ($list = glob($dir.'/*'))
{
foreach ($list as $file)
{
is_dir($file) ? $this->clear_dir($file) : unlink($file);
}
}
if ($to === false) rmdir($dir);
}
//写入缓存
private function cache_write($filename, $writetext, $openmod='w'){
if (!file_exists($filename)) {
@$this->makeDir( dirname($filename ));
}
if(@$fp = fopen($filename, $openmod)) {
flock($fp, 2);
fwrite($fp, $writetext);
fclose($fp);
return true;
} else {
echo "File: $filename write error.";
return false;
}
}
//缓存有效期 有效返回 true
public function cache_is($fileName){
$fileName=$this->cache_file($fileName);
if( file_exists( $fileName ) ) {
//如果缓存时间为负数则永不过期
if ($this->config['cacheTime']
return true;
}
//如果缓存时间为0则一直过期
if ($this->config['cacheTime'] == 0) {
return false;
}
//获取缓存文件的建立时间
$ctime = intval(filemtime( $fileName ));
//比较是否大于缓存时间,是则过期 否则不过期
if (time() - $ctime > $this->config['cacheTime']) {
return false;
}else {
return true;
}
//文件不存在视为过期失效
}else {
return false;
}
}
public function cache_data($name,$data){
$varname=$name;
$name = $this->cache_file($name);
//config['cacheTime']==0也就是不启用缓存是直接返回数据
if ($this->config['cacheTime'] 0) {
if($this->config['cacheType']==1){
$write_data = "".serialize($data);
//return $data;
}else {
$write_data = "
$write_data .= var_export($data,true);
$write_data .=";\\r\\n?>";
}
$this->cache_write($name,$write_data);
}
return $data;
}
//缓存文件名
private function cache_file($filename){
return $this->config['cacheRoot'].$filename.$this->config['cacheExe'];
}
//读取文件
public function cache_read($file){
$file=$this->cache_file($file);
if (!file_exists($file)) {
return '';
}
if($this->config['cacheType']==1){
if (function_exists('file_get_contents')){
$cache_Content= file_get_contents($file);
}else{
$fopen = fopen($file,'r');
$cache_Content = '';
do {
$data = fread($fopen,filesize($file));
if (strlen($data)===0) break;
$cache_Content .= $data;
}while(1);
fclose($fopen);
}
$cache_Content = substr($cache_Content,13);/* 去除 */
$cache_Content = unserialize($cache_Content);
return $cache_Content;
}else{
include_once($file);
return $var;
}
}
//循环创建目录
private 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;
}
}
?>

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











Laravel은 직관적 인 플래시 방법을 사용하여 임시 세션 데이터 처리를 단순화합니다. 응용 프로그램에 간단한 메시지, 경고 또는 알림을 표시하는 데 적합합니다. 데이터는 기본적으로 후속 요청에만 지속됩니다. $ 요청-

PHP 클라이언트 URL (CURL) 확장자는 개발자를위한 강력한 도구이며 원격 서버 및 REST API와의 원활한 상호 작용을 가능하게합니다. PHP CURL은 존경받는 다중 프로모토콜 파일 전송 라이브러리 인 Libcurl을 활용하여 효율적인 execu를 용이하게합니다.

Laravel은 간결한 HTTP 응답 시뮬레이션 구문을 제공하여 HTTP 상호 작용 테스트를 단순화합니다. 이 접근법은 테스트 시뮬레이션을보다 직관적으로 만들면서 코드 중복성을 크게 줄입니다. 기본 구현은 다양한 응답 유형 단축키를 제공합니다. Illuminate \ support \ Facades \ http를 사용하십시오. http :: 가짜 ([ 'google.com'=> 'Hello World', 'github.com'=> [ 'foo'=> 'bar'], 'forge.laravel.com'=>

Alipay PHP ...

고객의 가장 긴급한 문제에 실시간 인스턴트 솔루션을 제공하고 싶습니까? 라이브 채팅을 통해 고객과 실시간 대화를 나누고 문제를 즉시 해결할 수 있습니다. 그것은 당신이 당신의 관습에 더 빠른 서비스를 제공 할 수 있도록합니다.

기사는 PHP 5.3에 도입 된 PHP의 LSB (Late STATIC BING)에 대해 논의하여 정적 방법의 런타임 해상도가보다 유연한 상속을 요구할 수있게한다. LSB의 실제 응용 프로그램 및 잠재적 성능

이 기사에서는 프레임 워크에 사용자 정의 기능 추가, 아키텍처 이해, 확장 지점 식별 및 통합 및 디버깅을위한 모범 사례에 중점을 둡니다.

기사는 입력 유효성 검사, 인증 및 정기 업데이트를 포함한 취약점을 방지하기 위해 프레임 워크의 필수 보안 기능을 논의합니다.
