PHP进行读取超大文件数据的代码是什么
Admin 2022-08-15 群英技术资讯 432 次浏览
function readMaxFile($fp , $start = 0) { $tag = "\n"; $i = 0; $content = ''; while($i < 20) { if (feof($fp)) { return 0; } fseek($fp, $start, SEEK_SET); $res = fread($fp, 1); $content .= $res; if (substr($content, -strlen($tag)) == $tag) { $i++; echo $i." ->+++这里我插入到数据库+++"."\n"; } $start+=1; if (feof($fp)) { return 0; } } sleep(3); echo "从位置".$start."开始读取"; return $start; } $fp = fopen("install.log", "r+"); $re = readMaxFile($fp, 0); for($i=0; $i<100; $i++) { if ($re==0) { echo 'a函数返回0了循环结束'; break; } $re = readMaxFile($fp, $re); } fclose($fp); echo "程序结束";
//下面两个从网上找的启发很大感谢分享
foreach( glob( ngx_log. "/*.log" ) as $file ) {
$log = new SplFileObject($file);//返回对象
foreach( $log as $line ){ //$line 是一行一行的内容
$ipnum = getip($line);//这里调用自定义函数
if( $ipnum ) {
$ips[$ipnum] = (int)$ips[$ipnum] + 1;
}
}
}
/** 返回文件从X行到Y行的内容(支持php5、php4)
* @param string $filename 文件名
* @param int $startLine 开始的行数
* @param int $endLine 结束的行数
* @return string
*/
function getFileLines($filename, $startLine = 1, $endLine=50, $method='rb') {
$content = array();
$count = $endLine - $startLine;
// 判断php版本(因为要用到SplFileObject,PHP>=5.1.0)
if(version_compare(PHP_VERSION, '5.1.0', '>=')){
$fp = new SplFileObject($filename, $method);
$fp->seek($startLine-1);// 转到第N行, seek方法参数从0开始计数
for($i = 0; $i <= $count; ++$i) {
$content[]=$fp->current();// current()获取当前行内容
$fp->next();// 下一行
}
}else{//PHP<5.1
$fp = fopen($filename, $method);
if(!$fp) return 'error:can not read file';
for ($i=1;$i<$startLine;++$i) {// 跳过前$startLine行
fgets($fp);
}
for($i;$i<=$endLine;++$i){
$content[]=fgets($fp);// 读取文件行内容
}
fclose($fp);
}
return array_filter($content); // array_filter过滤:false,null,''
}
echo '<pre>';
var_dump(getFileLines('test.php',35270,35280));
echo '</pre>';
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
一、设置cookie的过期时间//将过期时间设为一小时前setcookie("TestCookie","",time()-3600);setcookie("TestCookie","",time()-3600,"/~rasmus/",".utoronto.ca",1);二、设置cookie的值为空setcookie($cookiename,'')
其中,Redis常见的报错就是:Redis可以配置如果客户端经过多少秒还不给Redis服务器发送数据,那么就会把连接close掉;MySQL常见的报错:和Redis服务器一样,MySQL也会定时的去清理掉没用的连接。
今天小编就为大家分享一篇关于PHP chr()函数讲解,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
在thinkphp中,T方法用于生成模板文件名,语法“T([资源://][模块@][主题/][控制器/]操作,[视图分层])”;该方法的返回值是一个完整的模板文件名,可以直接用于display和fetch方法进行渲染输出。
事务指的是访问并可能更新数据库中各种数据项的一个程序执行单元。文本主要给大家介绍的就是thinkPHP中事务操作的相关内容,感兴趣的朋友可以参考参考。
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008