PHP가 파일을 읽고 쓰는 방법
PHP는 ASP에서 FSO를 사용하여 파일을 읽고 쓰는 것과 마찬가지로 파일을 읽고 씁니다. 물론 ASP에서 FSO는 현재 프로그램을 실행하는 서버 디스크에서만 파일을 읽고 쓸 수 있지만(분명히 물리적 경로를 얻어야 함), PHP는 FTP 또는 HTTP를 통해 읽고 쓰기 위해 파일을 열 수 있습니다.
PHP 파일 읽는 방법
PHP 파일 읽기는 현재 서버나 원격 서버에 있는 파일을 읽을 수 있습니다. 단계는 다음과 같습니다. 파일을 열고, 파일을 읽고, 파일을 닫습니다.
이 글에서는 주로 PHP가 파일 내용을 읽는 다섯 가지 방법을 소개합니다.
php가 파일 내용을 읽는 방법:
------첫 번째 방법------fread()------- ---
<?php $file_path = "test.txt"; if(file_exists($file_path)){ $fp = fopen($file_path,"r"); $str = fread($fp,filesize($file_path));//指定读取大小,这里把整个文件内容读取出来 echo $str = str_replace("\r\n","<br />",$str); } ?>
---------두 번째 방법------------
<?php $file_path = "test.txt"; if(file_exists($file_path)){ $str = file_get_contents($file_path);//将整个文件内容读入到一个字符串中 $str = str_replace("\r\n","<br />",$str); echo $str; } ?>
------세 번째 방법 ------ ----
<?php $file_path = "test.txt"; if(file_exists($file_path)){ $fp = fopen($file_path,"r"); $str = ""; $buffer = 1024;//每次读取 1024 字节 while(!feof($fp)){//循环读取,直至读取完整个文件 $str .= fread($fp,$buffer); } $str = str_replace("\r\n","<br />",$str); echo $str; } ?>
-------네 번째 방법---------------
<?php $file_path = "test.txt"; if(file_exists($file_path)){ $file_arr = file($file_path); for($i=0;$i<count($file_arr);$i++){//逐行读取文件内容 echo $file_arr[$i]."<br />"; } /* foreach($file_arr as $value){ echo $value."<br />"; }*/ } ?>
----다섯 번째 방법--- -----------------
<?php $file_path = "test.txt"; if(file_exists($file_path)){ $fp = fopen($file_path,"r"); $str =""; while(!feof($fp)){ $str .= fgets($fp);//逐行读取。如果fgets不写length参数,默认是读取1k。 } $str = str_replace("\r\n","<br />",$str); echo $str; } ?>
실제 적용시 fclose($fp) 종료에 주의해주세요;
위 내용은 PHP에서 파일 내용을 읽는 5가지 방법 요약의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!