当前位置:Gxlcms > PHP教程 > php实现编辑和保存文件的方法_php技巧

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

时间:2021-07-01 10:21:17 帮助过:3人阅读

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

save_file.php:

<?php 
session_start(); 
$handle = fopen($_POST['original_file_name'], "w"); 
$text = $_POST['file_contents']; 
if(fwrite($handle, $text) == FALSE){ 
  $_SESSION['error'] = 'There was an error'; 
}else{ 
  $_SESSION['error'] = 'File edited successfully'; 
} 
fclose($handle); 
header("Location: ".$_POST['page']); 
?>

read_file.php:





Untitled Document






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

人气教程排行