分析PHP生成html文件的具体代码示例

knijiokm 2009-12-01

学习PHP语言的程序员们都知道,PHP是一个功能强大的嵌入式HTML脚本语言,被许多程序员们用来创建网站。我们今天要为大家介绍的就是PHP生成html文件的相关实现方法。

PHP生成html文件1,下面使用模版的一个方法!
  1. < ?php   
  2. $fp = fopen ("templets.html","a");   
  3. if ($fp){   
  4. $fup = fread ($fp,filesize
    ("templets.html"));   
  5. $fp2 = fopen ("html.shtml","w");   
  6. if ($fwrite ($fp2,$fup)){   
  7. $fclose ($fp);   
  8. $fcolse ($fp2);   
  9. die ("写入模板成功");   
  10. } else {   
  11. fclose ($fp);   
  12. die ("写入模板失败!");   
  13. }   
  14. }   
  15. ?>   
< ?php   



$fp = fopen ("templets.html","a");   



if ($fp)  



{ $fup = fread ($fp,filesize("templets.html"));  




 $fp2 = fopen ("html.shtml","w");   



if ($fwrite ($fp2,$fup))  


{ $fclose ($fp);   


$fcolse ($fp2);   


die ("写入模板成功"); }   


else { fclose ($fp);   


die ("写入模板失败!");   


}   


}   



?>  

简单的将模板写进一个文件中存为html.html

PHP生成html文件2,按时间生成html文件名

< ?php   



$content = "这是一个以日期时间为文件名
的静态生成网页的测试文件,文件名格式一
般为< font color=#ff0000>年月日时分秒
.html< /font>";   




$datedate = date('YmdHis');   




$fp = fopen (date('YmdHis') . '.html',"w");
//本函数可用来打开本地或者远端的文件 'w' 
开文件方式为写入,文件指针指到开始处,
并将原文件的长度设为 0。若文件不存在,则建立新文件。   



if (fwrite ($fp,$content)){
//格式是.int fwrite(int fp(文件名),
 string string(内容), int [length]
(长度));本函数将字符串 string 写入文件
资料流的指针 fp 上。若有指定长度 length,
则会写入指定长度字符串,或是写到字符串结束。   


fclose ($fp);//函数用来关闭已经打开的文
件的指针 fp。成功返回 true,失败则返回 false。   


die ("写入模板成功");   


}   


else {   


fclose ($fp);   


die ("写入模板失败!");   


}   


echo ($content);   



?>  
< ?php $content = "这是一个以日期时间为文件名
的静态生成网页的测试文件,文件名格式一般为


< font color=#ff0000>年月日时分秒.html< /font>";


 $datedate = date('YmdHis'); 


$fp = fopen (date('YmdHis') . '.html',"w");


//本函数可用来打开本地或者远端的文件 'w' 
开文件方式为写入,文件指针指到开始处,
并将原文件的长度设为 0。若文件不存在,则建立新文件。 


if (fwrite ($fp,$content))


{//格式是.int fwrite(int fp(文件名),
 string string(内容), int [length](长度));


本函数将字符串 string 写入文件资料流的指针 fp 上。
若有指定长度 length,则会写入指定长度字符串,
或是写到字符串结束。 fclose ($fp);


//函数用来关闭已经打开的文件的指针 fp。
成功返回 true,失败则返回 false。 


die ("写入模板成功"); } 


else { fclose ($fp); die ("写入模板失败!"); 


} 


echo ($content); ?> 


 

PHP生成html文件3,下面为转换文件名的一个方法

< ?php   



$s_fname = "93e.php";   




$o_fname = "93e.htm";   



ob_end_clean();   


ob_start();   


include($s_fname);   



$length = ob_get_length();   




$buffer = ob_get_contents();   




$buffer = eregi_replace("r","",$buffer);   



ob_end_clean();   



$fp = fopen($o_fname,"w+");   



fwrite($fp,$buffer);   


fclose($fp);   



?>  
< ?php 


$s_fname = "93e.php"; 


$o_fname = "93e.htm"; 


ob_end_clean(); ob_start(); 


include($s_fname); 


$length = ob_get_length(); 


$buffer = ob_get_contents(); 


$buffer = eregi_replace("r","",$buffer); 
ob_end_clean(); 


$fp = fopen($o_fname,"w+"); 
fwrite($fp,$buffer); fclose($fp); 


?>  

相关推荐