时间:2021-07-01 10:21:17 帮助过:38人阅读
template.html 模板文件
{site_title} - sharejs.com
test.php 动态文件
<?php header('content-type:text/html; charset=utf-8');//防止生成的页面乱码 $title = "PHP 动态生成静态HTML页面_脚本分享网"; //定义变量 $url = "http://www.sharejs.com"; $temp_file = "temp.html"; //临时文件,也可以是模板文件 $dest_file = "dest_page.html"; //生成的目标页面 $fp = fopen($temp_file, "r"); //只读打开模板 $str = fread($fp, filesize($temp_file));//读取模板中内容 $str = str_replace("{penglig_site_title}", $title, $str);//替换内容 $str = str_replace("{penglig_site_url}", $url, $str);//替换内容 fclose($fp); $handle = fopen($dest_file, "w"); //写入方式打开需要写入的文件 fwrite($handle, $str); //把刚才替换的内容写进生成的HTML文件 fclose($handle);//关闭打开的文件,释放文件指针和相关的缓冲区 echo ""; ?>
以上所述就是本文的全部内容了,希望大家能够喜欢。