当前位置:Gxlcms > PHP教程 > 基于Redis的js、css缓存类

基于Redis的js、css缓存类

时间:2021-07-01 10:21:17 帮助过:4人阅读

redis = new Redis();
		$this->redis->connect(REDIS_HOST,REDIS_PORT);
	}
	public function init($array=[])
	{
		if($this->redis->get('updated')==1)return;
		foreach ($array as $k => $v) 
		{
			if($v[0]=='js')
				$this->redis->set($k,'');
			if($v[0]=='css')
				$this->redis->set($k,'');
		}
		$this->redis->set('updated',1);
	}
	public function get($c
	{
		echo $this->redis->get('jquery');
	}	
}
$setup=[
'jquery'=>['js','http://lib.sinaapp.com/js/jquery/1.9.1/jquery-1.9.1.min.js'],
'amazeui'=>['css','http://cdn.amazeui.org/amazeui/2.4.2/css/amazeui.css'],
'angular'=>['js','http://lib.sinaapp.com/js/angular.js/angular-1.2.19/angular-animate.min.js']
];
$k=new im();
$k->init($setup);
$k->get('jquery');

版权声明:本文为博主原创文章,未经博主允许不得转载。

以上就介绍了基于Redis的js、css缓存类,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行