php开发app接口之静态缓存
(1) 静态 缓存 这里技术的本质是我们将我们所需要的一些数据临时存在服务器的一些文件中。 ?php class File { private $_dir ; const EXT= 'php' ; public function __construct () { $this -_dir=dirname( __FILE__ ). '/files/' ; } public function cache
(1)静态缓存
这里技术的本质是我们将我们所需要的一些数据临时存在服务器的一些文件中。
<code><span><span><?php </span> <span><span>class</span> <span>File</span> {</span> <span>private</span> <span>$_dir</span>; <span>const</span> EXT=<span>'php'</span>; <span>public</span> <span><span>function</span> <span>__construct</span><span>()</span> {</span> <span>$this</span>->_dir=dirname(<span>__FILE__</span>).<span>'/files/'</span>; } <span>public</span> <span><span>function</span> <span>cacheDate</span><span>(<span>$key</span>,<span>$value</span>=<span>''</span>,<span>$path</span>=<span>''</span>)</span> {</span> <span>$filename</span>=<span>$this</span>->_dir.<span>$path</span>.<span>$key</span>.<span>self</span>::EXT; <span>//将value值写入<strong>缓存</strong></span> <span>if</span>(<span>$value</span>!==<span>''</span>) { <span>//如果value值为null</span> <span>if</span>(is_null(<span>$value</span>)) { <span>return</span> unlink(<span>$filename</span>); } <span>$dir</span>=dirname(<span>$filename</span>); <span>if</span>(!is_dir(<span>$dir</span>)) { mkdir(<span>$dir</span>,<span>0777</span>); } <span>return</span> file_put_contents(<span>$filename</span>,json_encode(<span>$value</span>)); } <span>if</span>(!is_file(<span>$filename</span>)) { <span>return</span> <span>FALSE</span>; } <span>else</span> { <span>return</span> json_decode(file_get_contents(<span>$filename</span>),<span>true</span>); } } }</span></span></code>
这里封装了一个类,下面是测试代码
<code><span><span><?php </span> <span>require_once</span> <span>'./File.php'</span>; <span>$data</span>=<span>array</span>( <span>'id'</span>=><span>1</span>, <span>'name'</span>=><span>'singwa'</span>, <span>'type'</span>=><span>array</span>(<span>4</span>,<span>5</span>,<span>6</span>), <span>'test'</span>=><span>array</span>(<span>1</span>,<span>45</span>,<span>67</span>=><span>array</span>(<span>123</span>,<span>'tsysa'</span>)), ); <span>$file</span>=<span>new</span> File(); <span>//增加<strong>缓存</strong>的方式 这样会将指定的数据放入指定文件夹中</span> <span>if</span>(<span>$file</span>->cacheDate(<span>'index_mk_cache'</span>),<span>$data</span>) { var_dump(<span>$file</span>->cacheDate(<span>'index_mk_cache'</span>)); <span>echo</span> <span>"success"</span>; } <span>else</span> { <span>echo</span> <span>"error"</span>; } <span>//取出<strong>缓存</strong>的方式</span> <span>if</span>(<span>$file</span>->cacheDate(<span>'index_mk_cache'</span>)) { var_dump(<span>$file</span>->cacheDate(<span>'index_mk_cache'</span>)); <span>echo</span> <span>"success"</span>; } <span>else</span> { <span>echo</span> <span>"error"</span>; } <span>//删除<strong>缓存</strong>的方式</span> <span>if</span>(<span>$file</span>->cacheDate(<span>'index_mk_cache'</span>),<span>$value</span>=<span>null</span>) { var_dump(<span>$file</span>->cacheDate(<span>'index_mk_cache'</span>)); <span>echo</span> <span>"success"</span>; } <span>else</span> { <span>echo</span> <span>"error"</span>; }</span></span></code>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

Apple's products and services have always been loved by users around the world. Registering a Hong Kong Apple ID will bring more convenience and privileges to users. Let’s take a look at the steps to register a Hong Kong Apple ID and what you need to pay attention to. How to register a Hong Kong Apple ID When using Apple devices, many applications and functions require using Apple ID to log in. If you want to download applications from Hong Kong or enjoy the preferential content of the Hong Kong AppStore, it is very necessary to register a Hong Kong Apple ID. This article will detail the steps on how to register a Hong Kong Apple ID and what you need to pay attention to. Steps: Select language and region: Find the "Settings" option on your Apple device and enter

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
