-
-
- /**
- * ファイルを 1 行ずつ読み取ります
- * @param string $filename
- * @site bbs.it-home.org
- */
- function readFileByLine ($filename)
- {
- $fh = fopen($filename, 'r');
-
- while (! feof($fh)) {
- $line = fgets($fh);
- $line をエコー;
- }
-
- fclose($fh);
- }
-
- // テスト
-
- $filename = "/home/wzy/test/sort.txt";
-
- readFileByLine($filename);
复制代码
2,c语言按行读取文件
-
- #include
- #include
- #include
-
- #define LEN 1024
-
- int main(void)
- {
- char ファイル名[LEN], buf[LEN];
- ファイル *fp;
- 内部レン;
-
- scanf("%s", ファイル名);
-
- fp = fopen(ファイル名, "r");
-
- if (fp == NULL) exit(-1);
-
- while (fgets(buf, LEN, fp) != NULL) {
- len = strlen(buf);
- buf[len - 1] = ' '; // 去掉换行符
-
- printf("%sn", buf);
- }
-
- 0 を返します。
- }
复制代
|