PHP读写文件的方法(生成HTML)
程序员文章站
2023-01-10 21:46:48
<?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 -- 把整个文件读入一个数组中
//生成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 -- 把整个文件读入一个数组中
上一篇: Django中ORM外键和表的关系详解
下一篇: Python实现打砖块小游戏代码实例