PHP automatically generates static HTML implementation code at regular intervals
However, scheduled generation has some limitations. If you have an independent server, you can set up scheduled tasks on the server, but if you use a virtual host, it will be difficult. Although there are many methods, it is simple and easy to use. , I think it is easier to first judge the difference between the generation time of the generated homepage file and the existing time. If a certain value is met, start generating this method. Not much to say. Let’s get started!
Online If you find it, write it down. Practice has proven that it is available.
<?php $nowtime=time(); $pastsec = $nowtime – $_GET["t"]; if($pastsec<60) { exit; //1分钟更新一次,时间可以自己调整 } ob_start(); //打开缓冲区 include(”index.php”); $content = ob_get_contents(); //得到缓冲区的内容 $content .= “n<script language=javascript src=”f5.php?t=”.$nowtime.”"></script>”; //加上调用更新程序的代码 file_put_contents(”index.html”,$content); if (!function_exists(”file_put_contents”)) { function file_put_contents($fn,$fs) { $fp=fopen($fn,”w+”); fputs($fp,$fs); fclose($fp); } }
Here are some explanations:
Let’s mention three functions before starting: "ob_start(), ob_end_clean(), ob_get_contents()"
ob_start():是打开缓冲区的,就是要把你需要生成的静态文件的内容缓存在这里; ob_get_contents():是读出缓冲区里的内容,下面有代码为例; ob_end_clean():这个比较重要,只有使用了这个函数后,缓冲区里的内容才会读取出来;
[code]
if(file_exists("./index.htm "))//Check whether the static index.htm file exists
{
$time=time();
//If the file modification time is different from the current time?, direct to the htm file, otherwise regenerate the htm
if($ time-filemtime("./index.htm")< 600)
{
header("Location:classhtml/main.htm");
}
}
//Add ob_start() at your beginning ;
ob_start();
//Homepage content is your dynamic part
//Add ob_end_clean() at the end and output this page to a variable
$temp=ob_get_contents();
ob_end_clean( );
//Write file
$fp=fopen("./index.htm",'w');
fwrite($fp,$temp) or die('Write file error');
// echo "Generating HTML completed!";
[html]
For more articles related to the implementation code of PHP automatically generating static HTML at regular intervals, please pay attention to 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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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

