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

  1. <?php 
  2. // 打开文件同时打印文件的每一个字符 
  3. if($myfile = fopen("data.txt""r")) 
  4. while(!feof($myfile)) 
  5. $mycharacter = fgetc($myfile);//从文件指针中读取字符 
  6. print($mycharacter); 
  7. fclose($myfile);//开源代码phpfensi.com 
  8. }  
  9. // 打开文件同时打印文件的每一行 
  10. if($myfile = fopen("data.txt""r")) 
  11. while(!feof($myfile)) 
  12. $myline = fgets($myfile, 255);//从文件指针中读取一行 
  13. print($myline); 
  14. fclose($myfile); 
  15. }  
  16. /* 打开文件同时打印文件的每一行, 
  17. 同时去掉取回字符串中的 html 语言 
  18. */ 
  19. if($myfile = fopen("data.txt""r")) 
  20. while(!feof($myfile)) 
  21. $myline = fgetss($myfile, 255);//从文件指针中读取一行并过滤掉 html 标记 
  22. print($myline); 
  23. fclose($myfile); 
  24. }  
  25. ?> 
  26.  

出处:http://www.phpfensi.com/php/20140806/4244.html


相关教程