• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

php fopen 有关问题

php 搞代码 3年前 (2022-01-23) 15次浏览 已收录 0个评论

php fopen 问题求助
templetest.php

PHP code

<!---ecms Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?php   $title     = "tst";   $file        = "hehe";   $fp       = fopen ("temp.html","r");   $content  = fread ($fp,filesize ("temp.html"));  // echo "读取的信息".$content."<br>";   $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 ("文<em style="color:transparent">本@文来源[email protected]搞@^&代*@码网(</em><q>搞代gaodaima码</q>件:".$filename."不可写,请检查其属性后重试!");   }   if (!fwrite ($handle,$content)){  //将信息写入文件      die ("生成文件".$filename."失败!");   }    fclose ($handle); //关闭指针      die ("创建文件".$filename."成功!");?>

temp.html

PHP code

<!---ecms Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->  <TITLE>{title}</TITLE>  <body>     {file}  

生成之后的界面
test.html

HTML code

<!---ecms Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->  <TITLE>{title}</TITLE>  <body>     {file}    <TITLE>{title}</TITLE>  <body>     hehe    <TITLE>tst</TITLE>  <body>     {file}    <TITLE>tst</TITLE>  <body>     hehe  

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

——解决方案——————–
$content = str_replace (“{file}”,$file,$content);
// echo $content;
$content = str_replace (“{title}”,$title,$content);

没有 . ,不然的话会把处理前后结果相连


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:php fopen 有关问题
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址