PHP生成静态HTML页面简单方法 html代码 html5 教程 html 空格
程序员文章站
2022-03-26 12:54:02
...
PHP文件名:dome.php
$string = 1;
ob_start();
@readfile("templets/list.html");
$text = ob_get_flush();
$myfile = fopen("list.html","w");
$text = str_replace ("{counent}",$string,$text);
fwrite($myfile,$text);
ob_clean();
?>
模板文件名:templets/list.html
html>head>