php 写入缓存文件、读取缓存文件的函数代码

前端之家收集整理的这篇文章主要介绍了php 写入缓存文件、读取缓存文件的函数代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一、写结果缓存文件

PHP;"> /** * 写结果缓存文件 * * @params string $cache_name * @params string $caches * * @return */ function write_static_cache($cache_name,$caches) { if ((DEBUG_MODE & 2) == 2) { return false; } $cache_file_path = ROOT_PATH . '/temp/static_caches/' . $cache_name . '.PHP'; $content = ""; file_put_contents($cache_file_path,$content,LOCK_EX); }

二、读结果缓存文件

PHP;"> /** * 读结果缓存文件 * * @params string $cache_name * * @return array $data */ function read_static_cache($cache_name) { if ((DEBUG_MODE & 2) == 2) { return false; } static $result = array(); if (!empty($result[$cache_name])) { return $result[$cache_name]; } $cache_file_path = ROOT_PATH . '/temp/static_caches/' . $cache_name . '.PHP'; if (file_exists($cache_file_path)) { include_once($cache_file_path); $result[$cache_name] = $data; return $result[$cache_name]; } else { return false; } }

以上就是PHP 写入缓存文件、读取缓存文件内容函数代码,需要的朋友可以参考一下。

原文链接:https://www.f2er.com/php/16902.html

猜你在找的PHP相关文章