search
HomeWeb Front-endHTML TutorialMaster several common methods of page staticization_html/css_WEB-ITnose

It is often said that page staticization is divided into two types, one is pseudo-static, that is, url rewriting, and the other is true staticization. Let’s focus on true staticization.

What is PHP static

The simple understanding of PHP static is to make the website-generated pages displayed in front of visitors in the form of static HTML. PHP static is divided into pure static and pseudo-static. The difference between the two lies in the different processing mechanisms used by PHP to generate static pages.


Why make web pages static?
1. Speed ​​up page opening and browsing speed. Static pages do not need to connect to the database and are significantly faster than dynamic pages.
2. Conducive to search engine optimization SEO, Baidu, and Google will give priority to including static pages, which are not only included quickly but also included completely;
3. Reduce the burden on the server, browsing the web without calling the system database;
4. The website is more secure, and HTML pages will not Affected by PHP-related vulnerabilities; Look at larger websites, which are basically static pages, and can reduce attacks and prevent SQL injection.
When a database error occurs, normal access to the website will not be affected.
Although the operation of generating html articles is more troublesome and the procedures are more complicated, in order to be more convenient for search, faster and safer, these sacrifices are still worth it.


How to generate static HTML pages with PHP

Use PHP templates to generate static pages

PHP templates are very convenient to achieve staticization, such as installing and using PHP Smarty to implement websites To make it static, you can also write your own set of template parsing rules. Common template rules can imitate various CMS templates.


1. Use PHP file reading and writing functions and ob caching mechanism to generate static pages
For example, the address of the dynamic details page of a product is: http://xxx.com?goods.php? gid=112
Then here we read the content of this details page based on this address, and then save it as a static page. Next time someone visits the dynamic address of this product details page, we can
directly save the generated The corresponding static content file is output.

<!--?php$gid  = $_GET['gid']+0;//商品id$goods_statis_file = "goods_file_".$gid.".html";//对应静态页文件$expr = 3600*24*10;//静态文件有效期,十天if(file_exists($goods_statis_file)){      $file_ctime =filectime($goods_statis_file);//文件创建时间       if($file_ctime+$expr-->time()){//如果没过期         echo file_get_contents($goods_statis_file);//输出静态文件内容         exit;      }else{//如果已过期            unlink($goods_statis_file);//删除过期的静态页文件            ob_start();            //从数据库读取数据,并赋值给相关变量            //include ("xxx.html");//加载对应的商品详情页模板            $content = ob_get_contents();//把详情页内容赋值给$content变量            file_put_contents($goods_statis_file,$content);//写入内容到对应静态文件中            ob_end_flush();//输出商品详情页信息      }}else{  ob_start();  //从数据库读取数据,并赋值给相关变量  //include ("xxx.html");//加载对应的商品详情页模板  $content = ob_get_contents();//把详情页内容赋值给$content变量  file_put_contents($goods_statis_file,$content);//写入内容到对应静态文件中  ob_end_flush();//输出商品详情页信息}?>

2. Use nosql to read content from memory (in fact, this is not static but cache);

Take memcache as an example:

<!--?php$gid  = $_GET['gid']+0;//商品id$goods_statis_content = "goods_content_".$gid;//对应键$expr = 3600*24*10;//有效期,十天$mem = new Memcache; $mem--->connect('memcache_host', 11211);$mem_goods_content = $mem->get($goods_statis_content);if($mem_goods_content){      echo $mem_goods_content;}else{  ob_start();  //从数据库读取数据,并赋值给相关变量  //include ("xxx.html");//加载对应的商品详情页模板  $content = ob_get_contents();//把详情页内容赋值给$content变量  $mem->add($goods_statis_content,$content, false, $expr);  ob_end_flush();//输出商品详情页信息}?>

Memcached has a one-to-one correspondence between keys and values. The default maximum key size cannot exceed 128 bytes, and the default size of value is 1M, so the 1M size can meet the storage needs of most web pages.
The above are the related methods of page staticization, I hope it will be helpful to friends
Excellent technical articles are updated every day, all at www.phpskill.com
Pure pure technology of php Learning exchange group: 323899029

Original text from: http://www.phpskill.com/html/show-1-4418-1.html

Statement
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
What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

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 Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool