国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Home Backend Development PHP Tutorial PHP caching tool class to implement web page caching

PHP caching tool class to implement web page caching

Aug 08, 2016 am 09:22 AM
function gt private this

php caching tool class implements web page caching

When the php program resists large traffic access, dynamic websites are often difficult to withstand, so a caching mechanism must be introduced. Generally, there are two types of cache

1. File caching

2 , Data query result caching, using memory to implement caching

This example mainly uses file caching.

The main principle is to use the cache function to store the web page display results. If it is called again within the specified time, the cache file can be loaded.

Tool code:

// 文件緩存類
class Cache {
	/**
	 * $dir : 緩存文件存放目錄
	 * $lifetime : 緩存文件有效期,單位為秒
	 * $cacheid : 緩存文件路徑,包含文件名
	 * $ext : 緩存文件擴(kuò)展名(可以不用),這里使用是為了查看文件方便
	 */
	private $dir;
	private $lifetime;
	private $cacheid;
	private $ext;
	/**
	 * 析構(gòu)函數(shù),檢查緩存目錄是否有效,默認(rèn)賦值
	 */
	function __construct($dir = '', $lifetime = 1800) {
		if ($this->dir_isvalid ( $dir )) {
			$this->dir = $dir;
			$this->lifetime = $lifetime;
			$this->ext = '.Php';
			$this->cacheid = $this->getcacheid ();
		}
	}
	/**
	 * 檢查緩存是否有效
	 */
	private function isvalid() {
		if (! file_exists ( $this->cacheid ))
			return false;
		if (! (@$mtime = filemtime ( $this->cacheid )))
			return false;
		if (mktime () - $mtime > $this->lifetime)
			return false;
		return true;
	}
	/**
	 * 寫入緩存
	 * $mode == 0 , 以瀏覽器緩存的方式取得頁面內(nèi)容
	 * $mode == 1 , 以直接賦值(通過$content參數(shù)接收)的方式取得頁面內(nèi)容
	 * $mode == 2 , 以本地讀取(fopen ile_get_contents)的方式取得頁面內(nèi)容(似乎這種方式?jīng)]什么必要)
	 */
	public function write($mode = 0, $content = '') {
		switch ($mode) {
			case 0 :
				$content = ob_get_contents ();
				break;
			default :
				break;
		}
		ob_end_flush ();
		try {
			file_put_contents ( $this->cacheid, $content );
		} catch ( Exception $e ) {
			$this->error ( '寫入緩存失敗!請檢查目錄權(quán)限!' );
		}
	}
	/**
	 * 加載緩存
	 * exit() 載入緩存后終止原頁面程序的執(zhí)行,緩存無效則運(yùn)行原頁面程序生成緩存
	 * ob_start() 開啟瀏覽器緩存用于在頁面結(jié)尾處取得頁面內(nèi)容
	 */
	public function load() {
		if ($this->isvalid ()) {
			// 以下兩種方式,哪種方式好?????
			require_once ($this->cacheid);
			echo "<!--緩存-->";
			// echo file_get_contents($this->cacheid);
			exit ();
		} else {
			ob_start ();
		}
	}
	/**
	 * 清除緩存
	 */
	public function clean() {
		try {
			unlink ( $this->cacheid );
		} catch ( Exception $e ) {
			$this->error ( '清除緩存文件失敗!請檢查目錄權(quán)限!' );
		}
	}
	/**
	 * 取得緩存文件路徑
	 */
	private function getcacheid() {
		return $this->dir . md5 ( $this->geturl () ) . $this->ext;
	}
	/**
	 * 檢查目錄是否存在或是否可創(chuàng)建
	 */
	private function dir_isvalid($dir) {
		if (is_dir ( $dir ))
			return true;
		try {
			mkdir ( $dir, 0777 );
		} catch ( Exception $e ) {
			$this->error ( '所設(shè)定緩存目錄不存在并且創(chuàng)建失敗!請檢查目錄權(quán)限!' );
			return false;
		}
		return true;
	}
	/**
	 * 取得當(dāng)前頁面完整url
	 */
	private function geturl() {
		$url = '';
		if (isset ( $_SERVER ['REQUEST_URI'] )) {
			$url = $_SERVER ['REQUEST_URI'];
		} else {
			$url = $_SERVER ['Php_SELF'];
			$url .= empty ( $_SERVER ['QUERY_STRING'] ) ? '' : '?' . $_SERVER ['QUERY_STRING'];
		}
		return $url;
	}
	/**
	 * 輸出錯(cuò)誤信息
	 */
	private function error($str) {
		echo '<div>' . $str . '</div>';
	}
}

How to use:

The usage is as follows:

Put part of the code in front of the logic code to be cached:

$cachedir = './Cache/'; // 設(shè)定緩存目錄
		$cache = new Cache ( $cachedir, 33 ); // 省略參數(shù)即采用缺省設(shè)置, $cache = new Cache($cachedir); 
		if (@$_GET ['cacheact'] != 'rewrite' || @$_GET ['clearCache'] == 'ok') // 此處為一技巧,通過xx.Php?cacheact=rewrite更新緩存,以此類推,還可以設(shè)定一些其它操作
			$cache->load (); // 裝載緩存,緩存有效則不執(zhí)行以下頁面代碼
		// 頁面代碼開始

Part of it is placed after the logic code to be cached:

// 頁面代碼結(jié)束
		$cache->write (); // 首次運(yùn)行或緩存過期,生成緩存

Original address: http://sijienet.com/bbs/?leibie=showinfo&id=50

The above introduces the PHP caching tool class to implement web page caching, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What are the differences between Huawei GT3 Pro and GT4? What are the differences between Huawei GT3 Pro and GT4? Dec 29, 2023 pm 02:27 PM

Many users will choose the Huawei brand when choosing smart watches. Among them, Huawei GT3pro and GT4 are very popular choices. Many users are curious about the difference between Huawei GT3pro and GT4. Let’s introduce the two to you. . What are the differences between Huawei GT3pro and GT4? 1. Appearance GT4: 46mm and 41mm, the material is glass mirror + stainless steel body + high-resolution fiber back shell. GT3pro: 46.6mm and 42.9mm, the material is sapphire glass + titanium body/ceramic body + ceramic back shell 2. Healthy GT4: Using the latest Huawei Truseen5.5+ algorithm, the results will be more accurate. GT3pro: Added ECG electrocardiogram and blood vessel and safety

What does function mean? What does function mean? Aug 04, 2023 am 10:33 AM

Function means function. It is a reusable code block with specific functions. It is one of the basic components of a program. It can accept input parameters, perform specific operations, and return results. Its purpose is to encapsulate a reusable block of code. code to improve code reusability and maintainability.

Fix: Snipping tool not working in Windows 11 Fix: Snipping tool not working in Windows 11 Aug 24, 2023 am 09:48 AM

Why Snipping Tool Not Working on Windows 11 Understanding the root cause of the problem can help find the right solution. Here are the top reasons why the Snipping Tool might not be working properly: Focus Assistant is On: This prevents the Snipping Tool from opening. Corrupted application: If the snipping tool crashes on launch, it might be corrupted. Outdated graphics drivers: Incompatible drivers may interfere with the snipping tool. Interference from other applications: Other running applications may conflict with the Snipping Tool. Certificate has expired: An error during the upgrade process may cause this issu simple solution. These are suitable for most users and do not require any special technical knowledge. 1. Update Windows and Microsoft Store apps

What does private mean in java What does private mean in java Nov 24, 2022 pm 06:27 PM

In Java, private means "private" and is an access control modifier used to modify classes, properties and methods. Class members modified with private can only be accessed and modified by the methods of the class itself, and cannot be accessed and referenced by any other class (including subclasses of the class); therefore, the private modifier has the highest level of protection.

What is the purpose of the 'enumerate()' function in Python? What is the purpose of the 'enumerate()' function in Python? Sep 01, 2023 am 11:29 AM

In this article, we will learn about enumerate() function and the purpose of “enumerate()” function in Python. What is the enumerate() function? Python's enumerate() function accepts a data collection as a parameter and returns an enumeration object. Enumeration objects are returned as key-value pairs. The key is the index corresponding to each item, and the value is the items. Syntax enumerate(iterable,start) Parameters iterable - The passed in data collection can be returned as an enumeration object, called iterablestart - As the name suggests, the starting index of the enumeration object is defined by start. if we ignore

Detailed explanation of the role and function of the MySQL.proc table Detailed explanation of the role and function of the MySQL.proc table Mar 16, 2024 am 09:03 AM

Detailed explanation of the role and function of the MySQL.proc table. MySQL is a popular relational database management system. When developers use MySQL, they often involve the creation and management of stored procedures (StoredProcedure). The MySQL.proc table is a very important system table. It stores information related to all stored procedures in the database, including the name, definition, parameters, etc. of the stored procedures. In this article, we will explain in detail the role and functionality of the MySQL.proc table

How to Fix Can't Connect to App Store Error on iPhone How to Fix Can't Connect to App Store Error on iPhone Jul 29, 2023 am 08:22 AM

Part 1: Initial Troubleshooting Steps Checking Apple’s System Status: Before delving into complex solutions, let’s start with the basics. The problem may not lie with your device; Apple's servers may be down. Visit Apple's System Status page to see if the AppStore is working properly. If there's a problem, all you can do is wait for Apple to fix it. Check your internet connection: Make sure you have a stable internet connection as the "Unable to connect to AppStore" issue can sometimes be attributed to a poor connection. Try switching between Wi-Fi and mobile data or resetting network settings (General > Reset > Reset Network Settings > Settings). Update your iOS version:

php提交表單通過后,彈出的對話框怎樣在當(dāng)前頁彈出,該如何解決 php提交表單通過后,彈出的對話框怎樣在當(dāng)前頁彈出,該如何解決 Jun 13, 2016 am 10:23 AM

php提交表單通過后,彈出的對話框怎樣在當(dāng)前頁彈出php提交表單通過后,彈出的對話框怎樣在當(dāng)前頁彈出而不是在空白頁彈出?想實(shí)現(xiàn)這樣的效果:而不是空白頁彈出:------解決方案--------------------如果你的驗(yàn)證用PHP在后端,那么就用Ajax;僅供參考:HTML code

See all articles