首頁  >  文章  >  後端開發  >  按行讀取檔案的程式碼(php、c實作)

按行讀取檔案的程式碼(php、c實作)

WBOY
WBOY原創
2016-07-25 08:55:271031瀏覽
  1. /**
  2. * 按行读取文件
  3. * @param string $filename
  4. * @site bbs.it-home.org
  5. */
  6. function readFileByLine ($filename)
  7. {
  8. $fh = fopen($filename, 'r');
  9. while (! feof($fh)) {
  10. $line = fgets($fh);
  11. echo $line;
  12. }
  13. fclose($fh);
  14. }
  15. // test
  16. $filename = "/home/wzy/test/sort.txt";
  17. readFileByLine($filename);
复制代码

2,c语言按行读取文件

  1. #include
  2. #include
  3. #include
  4. #define LEN 1024
  5. int main(void)
  6. {
  7. char filename[LEN], buf[LEN];
  8. FILE *fp;
  9. int len;
  10. scanf("%s", filename);
  11. fp = fopen(filename, "r");
  12. if (fp == NULL) exit(-1);
  13. while (fgets(buf, LEN, fp) != NULL) {
  14. len = strlen(buf);
  15. buf[len - 1] = '
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn