PHP读写文件生成HTML的代码举例

发布时间:2020-10-10编辑:脚本学堂
本文介绍下,php用读写文件的方式,生成html的一个代码,有需要的朋友,参考下吧。

代码如下:
 

复制代码 代码示例:
<?php
//生成HTML
$countfile="template.html";
$num=file_get_contents($countfile);
echo $num;
$num=str_replace("|*|*|PAGE_TITLE|*|*|","myhome",$num);
$path="template.html";
$handle=fopen($path,"w"); //写入方式打开新闻路径
fwrite($handle,$num); //把刚才替换的内容写进生成的HTML文件
fclose($handle);
?>

说明:
file_get_contents -- 将整个文件读入一个字符串
file -- 把整个文件读入一个数组中

详细参考:
php file_get_contents抓取页面信息的代码
php file_get_contents函数抓取页面信息的代码
php file_get_contents函数代理获取远程页面的代码
php file_get_contents函数的使用问题