我需要阅读一些 rsync 日志文件,这些文件有一些空行
我尝试使用:
$f = new \SplFileObject($file);
$f->setFlags(7); // Test 6 value and same problem
while (!$f->eof())
{
// Do something
// But $f->fgets() show any empty "" line
}
根据说明书
/* Constantes */
const integer DROP_NEW_LINE = 1 ;
const integer READ_AHEAD = 2 ;
const integer SKIP_EMPTY = 4 ;
const integer READ_CSV = 8 ;
我的代码有什么问题?