首页 > 开发 > PHP > 正文

php实现编辑和保存文件的方法

2024-05-04 23:37:57
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php实现编辑和保存文件的方法,涉及php针对文件的读取、编辑和保存操作的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了php实现编辑和保存文件的方法。分享给大家供大家参考。具体如下:

save_file.php:

 

 
  1. <?php  
  2. session_start();  
  3. $handle = fopen($_POST['original_file_name'], "w");  
  4. $text = $_POST['file_contents'];  
  5. if(fwrite($handle$text) == FALSE){  
  6. $_SESSION['error'] = '<span class="redtxt">There was an error</span>';  
  7. }else{  
  8. $_SESSION['error'] = '<span class="redtxt">File edited successfully</span>';  
  9. }  
  10. fclose($handle);  
  11. header("Location: ".$_POST['page']);  
  12. ?> 

read_file.php:

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 
  6. <title>Untitled Document</title> 
  7. </head> 
  8. <form action="savecontents.php" method="post"
  9. <textarea name="file_contents" style="width:700px;height:600px;"
  10. <?php  
  11. $fileName = "location/of/orignal/file/my_file.php";  
  12. $handle = fopen($fileName, "r");  
  13. while (!feof($handle)){  
  14. $text = fgets($handle);  
  15. echo $text;  
  16. }  
  17. ?>  
  18. </textarea> 
  19. <input type="hidden" value=" <? echo $fileName; ?> " name="original_file_name" /> 
  20. </form> 
  21. <body> 
  22. </body> 
  23. </html> 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表