PHP生成静态页

来源:互联网 发布:wan微型端口驱动程序 编辑:程序博客网 时间:2024/05/01 06:24

以下是引用片段:
<?php
   $title = "落伍测试模板";
   $file   = "TwoMax Inter test templet,<br>author:Matrix@Two_Max";
 $fp          = fopen ("temp.html","r");
   $content  = fread ($fp,filesize ("temp.html"));
   $content .= str_replace ("{file}",$file,$content);
   $content .= str_replace ("{title}",$title,$content);
   // echo $content;   
   $filename = "test/test.html";
   $handle    = fopen ($filename,"w"); //打开文件指针,创建文件
   /*
 检查文件是否被创建且可写
   */
   if (!is_writable ($filename)){
      die ("文件:".$filename."不可写,请检查其属性后重试!");
   }
   if (!fwrite ($handle,$content)){  //将信息写入文件
      die ("生成文件".$filename."失败!");
   } 
   fclose ($handle); //关闭指针
   
   die ("创建文件".$filename."成功!");
?>

 

 

 

 

 

 

这么理解比较简单

if($_POST){

 echo '<pre style="text-align:left">';
      print_r($_POST);
           echo '</pre>';

//熟读模板内容
    $filename = "../../test.txt";

    $fd = fopen ($filename, "r");

    $contents = fread ($fd, filesize ($filename));

    fclose ($fd);

//生成模板
$handle = fopen ("../../data/js/test.js","w+");
$somecontent = "222";
fwrite($handle, $contents);

原创粉丝点击