php讀取檔案內容的三種方式轉

來源:互聯網
上載者:User
分享下php讀取檔案內容的三種方法。

php讀取檔案內容:

  1. //**************第一種讀取方式*****************************
  2. header("content-type:text/html;charset=utf-8");
  3. //檔案路徑
  4. $file_path="text.txt";
  5. //判斷是否有這個檔案
  6. if(file_exists($file_path)){
  7. if($fp=fopen($file_path,"a+")){
  8. //讀取檔案
  9. $c>fread($fp,filesize($file_path));
  10. //替換字串
  11. $c>str_replace("\r\n","
    ",$conn);
  12. echo $conn."
    ";
  13. }else{
  14. echo "檔案打不開";
  15. }
  16. }else{
  17. echo "沒有這個檔案";
  18. }
  19. fclose($fp);
  20. //*******************第二種讀取方式***************************
  21. header("content-type:text/html;charset=utf-8");
  22. //檔案路徑
  23. $file_path="text.txt";
  24. $c>file_get_contents($file_path);
  25. $c>str_replace("\r\n","
    ",file_get_contents($file_path));
  26. echo $conn;
  27. fclose($fp);
  28. //******************第三種讀取方式,迴圈讀取*****************
  29. header("content-type:text/html;charset=utf-8");
  30. //檔案路徑
  31. $file_path="text.txt";
  32. //判斷檔案是否存在
  33. if(file_exists($file_path)){
  34. //判斷檔案是否能開啟
  35. if($fp=fopen($file_path,"a+")){
  36. $buffer=1024;
  37. //邊讀邊判斷是否到了檔案末尾
  38. $str="";
  39. while(!feof($fp)){
  40. $str.=fread($fp,$buffer);
  41. }
  42. }else{
  43. echo "檔案不能開啟";
  44. }
  45. }else{
  46. echo "沒有這個檔案";
  47. }
  48. //替換字元
  49. $str=str_replace("\r\n","
    ",$str);
  50. echo $str;
  51. fclose($fp);
  52. 讀取INI設定檔的函數:
  53. $arr=parse_ini_file("config.ini");
  54. //返回的是數組
  55. echo $arr['host']."
    ";
  56. echo $arr['username']."
    ";
  57. echo $arr['password']."
    ";

以上就介紹了php讀取檔案內容的三種方式轉,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.