Home  >  Article  >  Backend Development  >  Detailed explanation of examples of static PHP pages

Detailed explanation of examples of static PHP pages

php中世界最好的语言
php中世界最好的语言Original
2018-03-05 14:29:181306browse

Page staticization, as the name suggests, is to convert dynamic PHP into static Html. In the following article, the editor will introduce the principles and related methods of PHP page staticization. Friends in need can refer to it.

The specific process is as follows

#The user accesses index.php. If index.html exists and is within the validity period, index.html will be output directly. , otherwise generate index.html

file_put_contents() output static file

ob_start() turn on the PHP buffer

ob_get_contents() get the buffer Content

ob_clean() clears the buffer

ob_get_clean() is equivalent to ob_get_contents()+ob_clean()

Code Example

select('user', ['uid', 'username', 'email']);
 // 引入模板
 require_once "./templates/index.php";
 // 写入html
 file_put_contents('./html/index.html', ob_get_contents());
}

Related recommendations:

php’s caching mechanism to realize page static code sharing

PHP page Static implementation code

php Recommended video tutorial materials for page staticization


The above is the detailed content of Detailed explanation of examples of static PHP pages. For more information, please follow other related articles on the PHP Chinese website!

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