VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php读取文本文件内容

在php语言中读取文件的方法很多,今天我们就来讲三种php读取文本文件内容实例吧,主要是用到fopen,file,file_get_contents函数来实现.

  1. //fopen 读取文件实例,代码如下: 
  2.  
  3. $path ='a.txt'
  4. $fp=fopen($file,"r");//以只读的方式打开文件 
  5. while(!(feof($fp))) 
  6.  $text=fgets($fp);//读取文件的一行 
  7.  echo $text;      
  8.  
  9.  
  10. //file_get_contents读取文件,代码如下: 
  11.  
  12. iffile_exists$path ) ) 
  13.     $body = file_get_contents($path); 
  14.  echo $body ;//输入文件内容 
  15. else 
  16.     echo "文件不存在 $path"
  17. }//开源代码phpfensi.com 
  18.  
  19. //读取文本文件,代码如下: 
  20.  
  21. $cbody = file($path);  
  22. print_r($cbody); //因为file读取出来的文件是以数组形式保存的,所以用print_r输出。 
  23.  

出处:http://www.phpfensi.com/php/20140816/4298.html


相关教程