phpfopen related issues

php fopen problem help
templetest.php

PHP code

 <?php
    $title = "tst";
    $file = "hehe";
    $fp = fopen ("temp.html","r");
    $cOntent= fread ($fp,filesize ("temp.html"));
   // echo "Read information".$content."
"; $content .= str_replace ("{file}",$file,$content); // echo $content; $content .= str_replace ("{title}",$title,$content); $filename = "test.html"; $handle = fopen ($filename,"w"); //Open the file pointer and create the file /* Check if the file is created and writable */ if (!is_writable ($filename)){ die ("File: ".$filename." is not writable, please check its properties and try again!"); } if (!fwrite ($handle,$content)){ //Write information to file die ("Generate file".$filename."Failed!"); } fclose ($handle); //Close the pointer die ("Create file".$filename."Success!"); ?>

temp.html

PHP code

  
  
      {file}
  


 

The generated interface
test.html

HTML code

  
  
      {file}
  


  
  
      hehe
  


  
  
      {file}
  


  
  
      hehe
  


 

Try to make the article static
Q: Why does it appear so many times? I only need the last time. .

——Solution——————–
$cOntent= str_replace (“{file}”,$file,$content);
// echo $content;
$cOntent= str_replace (“{title}”,$title,$content);

No., otherwise the results before and after processing will be connected

This article is from the internet and does not represent1024programmerPosition, please indicate the source when reprinting:https://www.1024programmer.com/phpfopen-related-issues-3/

author: admin

Previous article
Next article

Leave a Reply

Your email address will not be published. Required fields are marked *

Contact Us

Contact us

181-3619-1160

Online consultation: QQ交谈

E-mail: 34331943@QQ.com

Working hours: Monday to Friday, 9:00-17:30, holidays off

Follow wechat
Scan wechat and follow us

Scan wechat and follow us

Follow Weibo
Back to top
首页
微信
电话
搜索