我是靠谱客的博主 微笑母鸡,最近开发中收集的这篇文章主要介绍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 = "<?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 写入缓存文件、读取缓存文件内容的函数代码,需要的朋友可以参考一下。

最后

以上就是微笑母鸡为你收集整理的php 写入缓存文件、读取缓存文件的函数代码的全部内容,希望文章能够帮你解决php 写入缓存文件、读取缓存文件的函数代码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(127)

评论列表共有 0 条评论

立即
投稿
返回
顶部