PHP가파일 내용을 읽는 방법을 소개합니다, PHP가 파일 내용을 읽는 5가지 방법을 요약합니다. 실제 응용프로그램에서는 fclose($fp)를 닫는 것에 주의하시기 바랍니다;
첫 번째 방법: 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에서 파일을 읽는 다섯 가지 방법 요약의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!