方法一,將本機或所在虛擬主機(站點)的某個頁面生成HTML 引用時必段使用相對路徑,復制以下代碼,保存為yiskyphp.php,然后訪問url+yiskyphp.php如http://m.heaithplan.com/yiskyphp.php
PHP代碼
- <?php
- $nowtime=time();
- $pastsec = $nowtime - $_GET["t"];
- if($pastsec<60)
- {
- exit; //1分鐘更新一次,時間可以自己調整
- }
- ob_start(); //打開緩沖區
- include("phpinfo.php");
- $content = ob_get_contents(); //得到緩沖區的內容
- $content .= "<script language=javascript src='yiskyphp.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);
- }
- }
- ?>
方法二:將指定網頁中的內容生成HTML,引用的地址需為直接地址。將文件保存為:php2html.php
PHP代碼
- <?php
- $nowtime=time();
- $pastsec = $nowtime - $_GET["t"];
- if($pastsec<60)
- {
- exit; //1分鐘更新一次,時間可以自己調整
- }
- $content = file_get_contents('http://m.heaithplan.com/index.asp');//也可引用擴展名為PHP的網頁
- $content=preg_replace("/[\r\n]+/", '', $content ); //是將回車去掉,此段可有可無,如影響使用請去除
- $content .= "<div style='display:none'>請注意此行代碼不要刪除 此為定時生成的必要代碼 亳州易天科技 m.heaithplan.com PHP自動生成HTML(PHP生成靜態面頁)實例</div><script language=javascript src='php2html.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);
- }
- }
- ?>