php读取文本文件内容

在php语言中读取文件的方法很多,今天我们就来讲三种php读取文本文件内容实例吧,主要是用到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输出。