菜鸟问一个问题

菜鸟问一个问题

下面这段程我有点不明白请各位高手帮忙解释一下,多谢了!
<?php
   $title = "";
   $file   = "TwoMax Inter test templet,<br>author:Matrix@Two_Max";

 $fp          = fopen ("temp.html","r");
   $content  = fread ($fp,filesize ("temp.html"));
   $content .= str_replace ("{file}",$file,$content);
   $content .= str_replace ("{title}",$title,$content);

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

你有那点不明白阿.那些函数都可以在php手册查到.不明白的地方为什么不查查手册呢?
毕业了。。。

多谢老大提醒!