Table of Contents
新闻列表
Home php教程 php手册 PHP大型网站的提速(页面静态化)(二)

PHP大型网站的提速(页面静态化)(二)

Jun 06, 2016 pm 08:00 PM
php Large University speed up static page

页面静态化有两种1.真静态2.伪静态 真静态有两个方法 1.使用PHP的ob缓存机制来实现页面静态化 2.使用模板技术来实现页面静态化 uOB缓存是什么?怎么用? 1.快速入门 注意:在PHP5.3这个版本,ob默认是打开的. PHP5.2这会报告waring 我们可以通过php.ini中可以

页面静态化有两种 1. 真静态 2. 伪静态

 

真静态有两个方法

1. 使用PHP 的 ob缓存机制来实现 页面静态化

 

 

 

2. 使用模板技术来实现页面静态化

 

u OB缓存是什么?怎么用?

1. 快速入门

 

注意: 在PHP5.3 这个版本,ob默认是打开的.

PHP5.2 这会报告waring

我们可以通过 php.ini 中可以配置是否启用 ob

 

 

初步的认识:

 

? 我们可以认为,在apache的服务器端,有两个缓存 ob缓存(这个程序员可以控制)

,程序缓存是必须有的.

当有一段代码  如果有 echo ,当你启用 ob缓存,那么这些echo 优化放在ob缓存中, 如果没有ob缓存,则直接放入了程序缓存.

 

如果你只有程序缓存,需要大家清楚,header 语句前,不能有 echo 语句,否则有提示

headers already sent by

截图:

 PHP大型网站的提速(页面静态化)(二)

 

ob的相关函数.

 

 

说明的代码:

ob3.php

 

 

//这里我们可以再找个页面把ob缓存打开

//开启ob缓存

ob_start();

echo "hello,wrold!";

header("content-type: text/html;charset=utf-8");

 

echo "你好!";

 

//把ob内容缓存清空,但是ob缓存还在

//ob_clean();

//把ob内容缓存清空,同时关闭ob缓存

//ob_end_clean();

//把ob缓存的内容,刷新到程序缓存,同时关闭ob缓存

//ob_end_flush();

//把ob缓存的内容,刷新到程序缓存,不关闭ob缓存

ob_flush();

echo "笑傲江湖";

 

//获取ob缓存内容

$con=ob_get_contents();

 

//需要把日志,写入文件. echo print_r var_dump ,写文件 ,下断点.

file_put_contents("d://hsp.log",$con);

 

现在我们再说最后一个函数 flush()

该函数是把 程序缓存的内容,强制刷新到 浏览器

ob4.php

 

 

 PHP大型网站的提速(页面静态化)(二)

 

这里有一个知识点:

 

当我们请求一个PHP页面时,该页面会发出几次请求,和各部分的代码在哪里执行示意图:

 

u 使用ob缓存实现页面静态化

 

PHP大型网站的提速(页面静态化)(二)

 

现在开始以一个新闻管理系统,来学习我们的页面静态化.

 

1. 先创建数据库和表

create table news(

id int unsigned primary key auto_increment, /*新闻编号*/

title varchar(128) not null, /*新闻的标题*/

content varchar(256) not null, /*新闻的内容*/

filename varchar(32)) engine=MyISAM /*是该新闻对于的静态页面的名字*/

 

u MyISAM 和 InnoDB

1. MyISAM 不支持事务 , InnoDB支持事务

2. MyISAM速度相对快,InnoDB 速度相对慢.

3. MyISAM 不支持外键, InnoDB支持外键

 

外键的概念: PHP中用的不多,大家了解即可.

 

2. 添加两条初始化的数据

insert into news (title,content) values('hello1','北京你好');

insert into news (title,content) values('hello2','四川你好');

 

 

 

思考:

1. 这时,不同的用户没查看一次新闻,就会到数据库去查询一次. 这样做是不对的,因为新闻,文章, 他们的变换不多,所以,我可以第一次查询数据,并生成静态页面,news-idx.html, 然后我们第二次和以后,都直接返回该静态页面即可,

2. 现在开始改进  -》ob缓存

3. 思考-> 问题?

3.1 网址不是静态网址, 伪静态网站

3.2 如果我们的内容修改,我们将看不到修改的页面

 

先搞定这个问题.,

方法1: 通过比较文件的时间来 定时更新,即可,对于对应实时性要求不高的网站,是完全没有问题. 

if(file_exists($html_name) && filemtime($html_name)+30> time() ){

echo "使用缓存";

echo file_get_contents($html_name);

exit;

}

方法2; 现在我们可以这样考虑,当我们添加新闻,修改新闻时,就实时的更新数据库同时去更新静态页面->使用模板技术 

 

实现思路: smarty 模板替换-> 正则表达式

 

最总代码:

 

newsList.php

 

header("content-type:text/html;charset=utf-8");

echo "

新闻列表

";

echo "添加新闻


";

echo "

";

echo "

";

 

//mysql.class.php 工具类来完成数据的获取

$con=mysql_connect("localhost","root","root");

if(!$con){

die("连接失败");

}

mysql_select_db("newsdb",$con);

$sql="select * from news";

$res=mysql_query($sql,$con);

 

while($row=mysql_fetch_assoc($res)){

 

echo "

";

}

 

  echo "

id 标题 查看详情
{$row['id']} {$row['title']} 查看详情
";

 

  //关闭资源

  mysql_free_result($res);

 mysql_close($con);

 

addNews.html

 

新闻标题

 

 

新闻标题
新闻内容

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

See all articles