《PHP应用:php与c 实现按行读取文件实例代码》要点:
本文介绍了PHP应用:php与c 实现按行读取文件实例代码,希望对您有用。如果有疑问,可以联系我们。
PHP实例php与c 实现按行读取文件
PHP实例前言
PHP实例感觉很糟糕的一场电话一面竟然给了二面通知,好吧,给自己一个机会也给对方一次机会,题外话.海量数据处理经常涉及到hash将原来文件的每一行散列到子文件中,那如何按行读取文件呢,这里记录一下php和c的实现
PHP实例很水的一篇,只是记录一下常用的方法,防止面试尴尬
PHP实例php代码:
PHP实例
<?php
/**
* 按行读取文件
* @param string $filename
*/
function readFileByLine ($filename)
{
$fh = fopen($filename, 'r');
while (! feof($fh)) {
$line = fgets($fh);
echo $line;
}
fclose($fh);
}
// test
$filename = "/home/wzy/test/sort.txt";
readFileByLine($filename);
PHP实例c实现代码:
PHP实例
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define LEN 1024
int main(void)
{
char filename[LEN], buf[LEN];
FILE *fp;
int len;
scanf("%s", filename);
fp = fopen(filename, "r");
if (fp == NULL) exit(-1);
while (fgets(buf, LEN, fp) != NULL) {
len = strlen(buf);
buf[len - 1] = '\0'; // 去掉换行符
printf("%s\n", buf);
}
return 0;
}
PHP实例感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
转载请注明本页网址:
http://www.vephp.com/jiaocheng/2039.html