本文实例讲述了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'] = '<span class="redtxt">There was an error</span>'
}else{
$_SESSION['error'] = '<span class="redtxt">File edited successfully</span>'
}
fclose($handle)
header("Location: ".$_POST['page'])
?>
read_file.php:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<form action="savecontents.php" method="post">
<textarea name="file_contents" style="width:700pxheight:600px">
<?php
$fileName = "location/of/orignal/file/my_file.php"
$handle = fopen($fileName, "r")
while (!feof($handle)){
$text = fgets($handle)
echo $text
}
?>
</textarea>
<input type="hidden" value=" <? echo $fileName?>" name="original_file_name" />
</form>
<body>
</body>
</html>
希望本文所述对大家的php程序设计有所帮助。
方法/步骤1
1,先知道打开php文件的方法比较多,下面就是介绍两个比较常见的方法
(1)第一种方法是笔记本
(2)使用Dreamweaver软件即可
2
2,最后,知道这两个方法的使用
3
(1)使用笔记本打开php文件
《1》直接右键选择php文件---打开方式---选择使用笔记本打开即可
4
(2)使用Dreamweaver软件打开
5
《1》先是在百度下载一个Dreamweaver软件
6
《2》然后,安装Dreamweaver软件即可,基本都是下一步,下一步的。
7
《3》最后,使用Dreamweaver软件打开即可
php文件,可以直接用记事本打开编辑;方法如下:
1、直接右键选择php文件---打开方式;
2、选择使用记事本打开;
3、编辑完成,直接保存即可。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)