欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php fopen 有关问题

程序员文章站 2022-06-06 20:25:19
...
php fopen 问题求助
templetest.php
PHP code

";
   $content .= str_replace ("{file}",$file,$content);
   // echo $content;
   $content .= str_replace ("{title}",$title,$content);   
   $filename = "test.html";
   $handle    = fopen ($filename,"w"); //打开文件指针,创建文件
   /*
 检查文件是否被创建且可写
   */
   if (!is_writable ($filename)){
      die ("文件:".$filename."不可写,请检查其属性后重试!");
   }
   if (!fwrite ($handle,$content)){  //将信息写入文件
      die ("生成文件".$filename."失败!");
   } 
   fclose ($handle); //关闭指针   
   die ("创建文件".$filename."成功!");
?>



temp.html
PHP code

  {title}
     {file}
  



生成之后的界面
test.html
HTML code

  {title}
     {file}
  


  {title}
     hehe
  


  tst
     {file}
  


  tst
     hehe
  



尝试做文章静态化
问:为什么会出现这么多次、我只需要最后一次。。

------解决方案--------------------
$content = str_replace ("{file}",$file,$content);
// echo $content;
$content = str_replace ("{title}",$title,$content);

没有 . ,不然的话会把处理前后结果相连
php fopen 有关问题

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频