- 论坛徽章:
- 0
|
解决
//PHP版本,很容易改写为C版本
//更新文件中的某一行
function update_fline($fp, $mid, $points, $point_time)
{
$buff = $c = '';
$offset_head = $offset_tail = 0; //相应行的开始位置和结束位置(距文件开始位置的字节数)
$is_head = $is_tail = 0; //是否到达了要求的行的开始位置和结束位置
$comma = 0; //逗号的位置标志
rewind($fp);
//查找相应行
while(($c = fgetc($fp)) !== false) {
$is_head || $offset_head++;
$offset_tail++;
//$buff中只存储每行第一个,前的数据,即MISC_MID
if($c != ',' && !$comma)
$buff .= $c;
else {
if(!$is_head && $c == ',')
(++$comma == 1) && (strcmp($buff, $mid)) || ($is_head = 1);
else if($c == '\n') { //开始读新的一行
$comma = 0;
if(!$is_head)
($buff) && ($buff = '');
else $is_tail = 1;
}
}
$is_tail && break; //读到相应行的结尾,停止继续读
}
fseek($fp, $offset_head); //定位文件指针到相应行的开始位置
list(, , $points_old,) = fgetcsv($fp, $offset_tail-$offset_head); //读取原来的积分
$points += $points_old;
fwrite($fp, "$mid,1,$points,$point_tmp");
} |
|