php 写入缓存文件、读取缓存文件的函数代码
程序员文章站
2022-04-10 08:16:32
一、写结果缓存文件
/**
* 写结果缓存文件
*
* @params string $cache_name
* @params string $...
一、写结果缓存文件
/** * 写结果缓存文件 * * @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 = "<?php\r\n"; $content .= "\$data = " . var_export($caches, true) . ";\r\n"; $content .= "?>"; file_put_contents($cache_file_path, $content, lock_ex); }
二、读结果缓存文件
/** * 读结果缓存文件 * * @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 写入缓存文件、读取缓存文件内容的函数代码,需要的朋友可以参考一下。
上一篇: 用VBS精确计算100的阶乘的实现代码
下一篇: 《老友记》人物性格分析