PHP code example of lsys / pagecache
1. Go to this page and download the library: Download lsys/pagecache library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lsys / pagecache example snippets
//只需要头部增加缓存拦截即可
$key=array("11"=>'bbb');//页面标识,如果每个页面都不同,可以用$_GET变量
$time=100;//缓存时间,单位:秒
//动态替换内容,没有不传此参数即可
$dny_body=array(
//动态内容,如当前登陆用户信息,不能缓存
//可使用正则表达式替换动态内容
//KEY为正则表达式,VALUE为动态内容
'/>.*</'=>'>sssdd<'
);
//检测是否有缓存并使用缓存
PageCache::cache($key,$time,$dny_body);