时间:2021-07-01 10:21:17 帮助过:13人阅读
具体如下:
比如去掉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使用MagickWand模块操作图片添加水印的方法
PHP模拟asp中response类的方法
以上就是php操作文件的相关技巧的详细内容,更多请关注Gxl网其它相关文章!