PHP가 파일 내용을 읽는 방법에는 여러 가지가 있습니다. 다음은 파일을 읽는 데 일반적으로 사용되는 함수입니다.
첫 번째 유형:
<?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); }
Analytic: fopen() 함수는 파일이나 URL을 엽니다.
두 번째 유형:
<?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; } ?>
Analytic: file_get_contents() 함수는 전체 파일을 문자열로 읽어옵니다.
세 번째 유형:
<?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; } ?>
Analytic: fread() 함수는 최대 바이트 수를 읽습니다. 파일의 끝에 도달했는지 확인하십시오.
넷째:
<?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 />"; }*/ } ?>
Analytic: file() 함수는 전체 파일을 배열로 읽어옵니다.
다섯 번째 유형:
<?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; } ?>
Analytic: fgets() 함수는 열린 파일에서 한 줄을 반환합니다.
위에서는 참고용으로 파일 내용을 읽는 여러 가지 기능을 소개합니다.
관련 질문이 더 필요하시면 PHP 중국어 웹사이트를 방문하세요: PHP 비디오 튜토리얼
위 내용은 PHP에서 파일 내용을 읽는 방법과 기능은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!