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:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

// 文件缓存类

class Cache {

    /**

     * $dir : 缓存文件存放目录

     * $lifetime : 缓存文件有效期,单位为秒

     * $cacheid : 缓存文件路径,包含文件名

     * $ext : 缓存文件扩展名(可以不用),这里使用是为了查看文件方便

     */

    private $dir;

    private $lifetime;

    private $cacheid;

    private $ext;

    /**

     * 析构函数,检查缓存目录是否有效,默认赋值

     */

    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 , 以浏览器缓存的方式取得页面内容

     * $mode == 1 , 以直接赋值(通过$content参数接收)的方式取得页面内容

     * $mode == 2 , 以本地读取(fopen ile_get_contents)的方式取得页面内容(似乎这种方式没什么必要)

     */

    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 ( '写入缓存失败!请检查目录权限!' );

        }

    }

    /**

     * 加载缓存

     * exit() 载入缓存后终止原页面程序的执行,缓存无效则运行原页面程序生成缓存

     * ob_start() 开启浏览器缓存用于在页面结尾处取得页面内容

     */

    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 ( '清除缓存文件失败!请检查目录权限!' );

        }

    }

    /**

     * 取得缓存文件路径

     */

    private function getcacheid() {

        return $this->dir . md5 ( $this->geturl () ) . $this->ext;

    }

    /**

     * 检查目录是否存在或是否可创建

     */

    private function dir_isvalid($dir) {

        if (is_dir ( $dir ))

            return true;

        try {

            mkdir ( $dir, 0777 );

        } catch ( Exception $e ) {

            $this->error ( '所设定缓存目录不存在并且创建失败!请检查目录权限!' );

            return false;

        }

        return true;

    }

    /**

     * 取得当前页面完整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;

    }

    /**

     * 输出错误信息

     */

    private function error($str) {

        echo '<div>' . $str . '</div>';

    }

}

Copy after login

How to use:

The usage is as follows:

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

1

2

3

4

5

$cachedir = './Cache/'; // 设定缓存目录

        $cache = new Cache ( $cachedir, 33 ); // 省略参数即采用缺省设置, $cache = new Cache($cachedir);

        if (@$_GET ['cacheact'] != 'rewrite' || @$_GET ['clearCache'] == 'ok') // 此处为一技巧,通过xx.Php?cacheact=rewrite更新缓存,以此类推,还可以设定一些其它操作

            $cache->load (); // 装载缓存,缓存有效则不执行以下页面代码

        // 页面代码开始

Copy after login

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

1

2

// 页面代码结束

        $cache->write (); // 首次运行或缓存过期,生成缓存

Copy after login

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

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.

Undress AI Tool

Undress AI Tool

Undress images for free

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 Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Hot Topics

Java Tutorial
1670
14
PHP Tutorial
1274
29
C# Tutorial
1256
24
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提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 Jun 13, 2016 am 10:23 AM

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

See all articles