翼度科技»论坛 编程开发 PHP 查看内容

PHP读取TXT文本内容的五种实用方法小结

5

主题

5

帖子

15

积分

新手上路

Rank: 1

积分
15
在Web开发中,我们经常需要读取和处理文本文件。PHP作为一种流行的服务器端脚本语言,提供了多种方法来读取TXT文本内容。本文将介绍五种不同的PHP教程,帮助您学习如何使用PHP读取TXT文本内容。PHP读取文件内容在实际开发当中,还是比较常见的,所以今天我就给大家分享几种读取的方法,大家可以选择一种最适合的就行了。
第一种,使用fread函数:
  1. <?php
  2. $file_path = "test.txt";
  3. if(file_exists($file_path)){
  4. $fp = fopen($file_path,"r");
  5. $str = fread($fp,filesize($file_path));//指定读取大小,这里把整个文件内容读取出来
  6. echo $str = str_replace("\r\n","<br />",$str);
  7. fclose($fp);
  8. }
  9. ?>
复制代码
第二种,用file_get_contents函数:
  1. <?php
  2. $file_path = "test.txt";
  3. if(file_exists($file_path)){
  4. $str = file_get_contents($file_path);//将整个文件内容读入到一个字符串中
  5. $str = str_replace("\r\n","<br />",$str);
  6. echo $str;
  7. }
  8. ?>
复制代码
第三种,用fopen函数:
  1. <?php
  2. $file_path = "test.txt";
  3. if(file_exists($file_path)){
  4. $fp = fopen($file_path,"r");
  5. $str = "";
  6. $buffer = 1024;//每次读取 1024 字节
  7. while(!feof($fp)){//循环读取,直至读取完整个文件
  8. $str .= fread($fp,$buffer);
  9. }
  10. $str = str_replace("\r\n","<br />",$str);
  11. echo $str;
  12. fclose($fp);
  13. }
  14. ?>
复制代码
第四种方法,使用file函数:
  1. <?php
  2. $file_path = "test.txt";
  3. if(file_exists($file_path)){
  4. $file_arr = file($file_path);
  5. for($i=0;$i<count($file_arr);$i++){//逐行读取文件内容
  6. echo $file_arr[$i]."<br />";
  7. fclose($file_arr);
  8. }
  9. }
  10. ?>
复制代码
第五种,还是使用fopen函数:
  1. <?php
  2. $file_path = "test.txt";
  3. if(file_exists($file_path)){
  4. $fp = fopen($file_path,"r");
  5. $str ="";
  6. while(!feof($fp)){
  7. $str .= fgets($fp);//逐行读取。如果fgets不写length参数,默认是读取1k。
  8. }
  9. $str = str_replace("\r\n","<br />",$str);
  10. echo $str;
  11. fclose($fp);
  12. }
  13. ?>
复制代码
当然,开启资源后,记得使用fclose($fp);关闭一下,不然的话,会消耗服务器的资源。
方法补充
除了上文的方法,小编还为大家整理了其他一些PHP读取TXT文本的方法,希望对大家有所帮助
php读取文件内容的三种方法:
  1. //**************第一种读取方式*****************************
  2. 代码如下:
  3. header("content-type:text/html;charset=utf-8");  //告诉php预处理器将内容已utf8的格式传递给浏览器
  4. //文件路径
  5. $file_path="text.txt";
  6. //判断是否有这个文件
  7. if(file_exists($file_path)){

  8. if(fp=fopen(file_path,"a+")){

  9. //读取文件

  10. conn=fread(fp,filesize($file_path));

  11. //替换字符串

  12. conn=strreplace("rn","<br/>",conn);

  13. echo $conn."<br/>";
  14. }else{
  15. echo "文件打不开";
  16. }
  17. }else{
  18. echo "没有这个文件";
  19. }
  20. fclose($fp);

  21. //*******************第二种读取方式***************************
  22. 代码如下:
  23. header("content-type:text/html;charset=utf-8");
  24. //文件路径
  25. $file_path="text.txt";

  26. conn=filegetcontents(file_path);

  27. conn=strreplace("rn","<br/>",filegetcontents(file_path));

  28. echo $conn;
  29. fclose($fp);

  30. //******************第三种读取方式,循环读取*****************
  31. 代码如下:
  32. header("content-type:text/html;charset=utf-8");
  33. //文件路径
  34. $file_path="text.txt";
  35. //判断文件是否存在
  36. if(file_exists($file_path)){
  37. //判断文件是否能打开
  38. if(fp=fopen(file_path,"a+")){

  39. $buffer=1024;
  40. //边读边判断是否到了文件末尾
  41. $str="";
  42. while(!feof($fp)){

  43. str.=fread(fp,$buffer);

  44. }
  45. }else{
  46. echo "文件不能打开";
  47. }
  48. }else{
  49. echo "没有这个文件";
  50. }
  51. //替换字符

  52. str=strreplace("rn","<br>",str);

  53. echo $str;
  54. fclose($fp);
复制代码
利用fopen,file,file_get_contents函数来实现读取文本文件内容
  1. //fopen 读取文件实例,代码如下:

  2. $path ='a.txt';
  3. $fp=fopen($file,"r");//以只读的方式打开文件
  4. while(!(feof($fp)))
  5. {
  6. $text=fgets($fp);//读取文件的一行
  7. echo $text;      
  8. }


  9. //file_get_contents读取文件,代码如下:

  10. if( file_exists( $path ) )
  11. {
  12.     $body = file_get_contents($path);
  13. echo $body ;//输入文件内容
  14. }
  15. else
  16. {
  17.     echo "文件不存在 $path";
  18. }//开源代码phpfensi.com

  19. //读取文本文件,代码如下:

  20. $cbody = file($path);  
  21. print_r($cbody); //因为file读取出来的文件是以数组形式保存的,所以用print_r输出。
复制代码
到此这篇关于PHP读取TXT文本内容的五种实用方法小结的文章就介绍到这了,更多相关PHP读取TXT内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

来源:https://www.jb51.net/program/3132339ou.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具