// 获取指定开始行数$page,跨度$step的文件内容
function getLine($file_name, $start, $limit)
{
$f = new SplFileObject($file_name, 'r');
$f->seek($start);
$ret = "";
for ($i = 0; $i < $limit; $i++) {
try {
$ret .= $f->getCurrentLine();
$f->next();
} catch (Exception $e) {
break;
}
}
return $ret;
}
原文地址:https://www.cnblogs.com/phonecom/p/10986473.html
时间: 2024-10-04 11:04:16