当前位置:Gxlcms > PHP教程 > 按行读取文件的代码(php、c实现)

按行读取文件的代码(php、c实现)

时间:2021-07-01 10:21:17 帮助过:5人阅读

  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] = '\0'; // 去掉换行符
  16. printf("%s\n", buf);
  17. }
  18. return 0;
  19. }

人气教程排行