What does php static mean?
PHP staticization is to make the website-generated pages displayed in front of visitors in the form of static HTML; PHP staticization is divided into pure staticization and pseudo-staticization. The difference between the two lies in the different processing mechanisms for PHP to generate static pages. Pure staticization is to save the dynamic page generated by PHP into a static html file. The user accesses the static page instead of regenerating the same web page every time the user visits, which can reduce server overhead. Pseudo-static refers to converting the URL address of a dynamic page into a URL address similar to a static page to facilitate inclusion by search engines.
The operating environment of this tutorial: windows7 system, PHP8 version, DELL G3 computer
What is PHP staticization
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 is that PHP The processing mechanism for generating static pages is different.
Pure static: It saves the dynamic page generated by PHP into a static html file. The user accesses the static page instead of regenerating the same web page every time the user visits.
The advantage is to reduce server overhead.
If you subdivide pure static, it can be divided into "partial pure static" and "all pure static":
-
Partial staticization: Is there partial data in the generated static file or is it obtained dynamically through ajax technology;
Full staticization: That is, there is no dynamic acquisition of data , so the content comes from static html pages
Pseudo-static: refers to the process of converting the URL address of a dynamic page into a URL address similar to a static page
Pseudo-static is actually dynamic access. Its essence is to dynamically generate data. The URL you visit is similar to "http://yourhost,com/index/post/12", which is a static address. This address It is more common in blog addresses, but in pseudo-static mode, the URL you visit is actually parsed by the server and will still be parsed into an address similar to "http://yourhost,com/?c=index&a=post&id=12", so it is called It is pseudo-static
Advantages of pseudo-static: beautiful; easy for search engines to include
PHP pseudo-static: Use Apache mod_rewrite to implement URL rewriting.
Why make web pages static
1. Speed up page opening and browsing speed. Static pages do not need to be connected to the database to open faster than dynamic ones. The page has been significantly improved;
2. It is 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 load on the server , browsing web pages does not require calling the system database;
4. The website is more secure, and HTML pages will not be affected by PHP-related vulnerabilities; Take a look at the 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 in PHP
Use PHP templates to generate static pages
PHP It is very convenient to make templates static. For example, you can install and use PHP Smarty to make your website 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
So here we read the content of this details page once based on this address, and then save it as a static page. The next time someone visits the dynamic address of this product details page, we can
Directly output the corresponding static content file that has been generated.
<?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 key and value. The default maximum key size cannot exceed 128 bytes, and the default size of value is 1M. Therefore, the 1M size can meet the storage needs of most web pages.
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of What does php static mean?. For more information, please follow other related articles on the PHP Chinese website!

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



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

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

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
