php生成html文件的简单例子

发布时间:2019-07-27编辑:脚本学堂
这里给出的代码,是一个用php创建html页面的简单例子,用到了php中的文件操作。

这里给出的代码,是一个用php创建html页面的简单例子,用到了php中的文件操作。
 

复制代码 代码如下:
<?php
$con = array(array("newtitle","newcontent"),array("newtitle2","newcontent2"));
foreach($con as $id=>$val)
{
    $title = $val[0];
    $content = $val[1];
    $path = $id.'.htm';
    $fp = fopen("jia.htm", "r"); //打开文件,只读方式
    $str = fread($fp, filesize("jia.htm")); //读取文件
    $str = str_replace("{title}", $title,$str); //将字符串中的内容进行替换
    $str = str_replace("{content}", $content, $str);
    fclose($fp); //关闭文件
 
    $fpw = fopen($path, "w"); //以写入的方式打开文件
    fwrite($fpw, $str); //将$str写入文件
    fclose($fpw);
    echo "generate successfully!";
}
?>