이 글은 주로 PHP에서 파일을 읽고 편집하고 저장하는 작업을 소개합니다. 관심 있는 친구들이 참고하면 도움이 될 것입니다.
본 글의 예시에서는 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> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> </head> <form action="savecontents.php" method="post"> <textarea name="file_contents" style="width:700px;height: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 작업의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!