php fopen 问题求助
templetest.php
<!--
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 ("文件:".$filename."不可写,请检查其属性后重试!");
}
if (!fwrite ($handle,$content)){ //将信息写入文件
die ("生成文件".$filename."失败!");
}
fclose ($handle); //关闭指针
die ("创建文件".$filename."成功!");
?>
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
--><HTML>
<TITLE>{title}</TITLE>
<BODY>
{file}
</BODY>
</HTML>
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
--><HTML>
<TITLE>{title}</TITLE>
<BODY>
{file}
</BODY>
</HTML>
<HTML>
<TITLE>{title}</TITLE>
<BODY>
hehe
</BODY>
</HTML>
<HTML>
<TITLE>tst</TITLE>
<BODY>
{file}
</BODY>
</HTML>
<HTML>
<TITLE>tst</TITLE>
<BODY>
hehe
</BODY>
</HTML>
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号