php读取文件内容的三种可行方法示例介绍

这篇文章主要介绍了php读取文件内容的三种方法,需要的朋友可以参考下

php读取文件内容的三种方法:

//**************第一种读取方式*****************************

  1. header("content-type:text/html;charset=utf-8");
  2. //文件路径
  3. $file_path="text.txt";
  4. //判断是否有这个文件
  5. if(file_exists($file_path)){
  6. if($fp=fopen($file_path,"a+")){
  7. //读取文件
  8. $conn=fread($fp,filesize($file_path));
  9. //替换字符串
  10. $conn=str_replace("\r\n","<br/>",$conn);
  11. echo $conn."<br/>";
  12. }else{
  13. echo "文件打不开";
  14. }
  15. }else{
  16. echo "没有这个文件";
  17. }
  18. fclose($fp);

//*******************第二种读取方式***************************

  1. header("content-type:text/html;charset=utf-8");
  2. //文件路径
  3. $file_path="text.txt";
  4. $conn=file_get_contents($file_path);
  5. $conn=str_replace("\r\n","<br/>",file_get_contents($file_path));
  6. echo $conn;
  7. fclose($fp);

//******************第三种读取方式,循环读取*****************

  1. header("content-type:text/html;charset=utf-8");
  2. //文件路径
  3. $file_path="text.txt";
  4. //判断文件是否存在
  5. if(file_exists($file_path)){
  6. //判断文件是否能打开
  7. if($fp=fopen($file_path,"a+")){
  8. $buffer=1024;
  9. //边读边判断是否到了文件末尾
  10. $str="";
  11. while(!feof($fp)){
  12. $str.=fread($fp,$buffer);
  13. }
  14. }else{
  15. echo "文件不能打开";
  16. }
  17. }else{
  18. echo "没有这个文件";
  19. }
  20. //替换字符
  21. $str=str_replace("\r\n","<br>",$str);
  22. echo $str;
  23. fclose($fp);
  24. 读取INI配置文件的函数:
  25. $arr=parse_ini_file("config.ini");
  26. //返回的是数组
  27. echo $arr['host']."<br/>";
  28. echo $arr['username']."<br/>";
  29. echo $arr['password']."<br/>";