本文实例讲述了php去掉文件前几行的方法。分享给大家供大家参考。具体如下:
比如去掉lrc文件中开头几行:
[ti:]
[ar:]
[al:]
[by:cww.99Lrc.net]
[00:00.59]dasfdasfasdf
[00:30.18]dafadsf
php实现代码如下:
<?php foreach (new DirectoryIterator('./') as $fileInfo) { if($fileInfo->isDot()) continue; if($fileInfo->getExtension()=="lrc"){ $handle = fopen($fileInfo->getFilename(), 'rw'); $line_num=0; while(!feof($handle)){ $str=fgets($handle, 1024); if(strstr($str, "www.99Lrc.net")){ ob_start(); fpassthru($handle); //fclose($handle); file_put_contents($fileInfo->getFilename(),ob_get_clean()); printf('done'); break; } $line_num++; } fclose($handle); echo $fileInfo->getFilename() . PHP_EOL; } }
希望本文所述对大家的php程序设计有所帮助。
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索php
, 去掉
文件前几行
摄像头水雾去掉技巧、php去掉最后一个字符、php去掉html标签、php 去掉空格、forum.php怎么去掉,以便于您获取更多的相关知识。
时间: 2024-10-25 07:25:24