📅  最后修改于: 2023-12-03 14:45:19.096000             🧑  作者: Mango
在PHP的SplFileObject类中,getMaxLineLen()函数可以用来获取文件中最长行的长度。
public SplFileObject::getMaxLineLen ( void ) : int
此函数不接受任何参数。
返回文件中最长行的长度,如果文件为空则返回0。
$file = new SplFileObject('example.txt');
$maxLen = $file->getMaxLineLen();
echo "File contains the line with maximum length of {$maxLen} characters";
如果文件example.txt中最长行为"Hello World!",则运行结果为:
File contains the line with maximum length of 12 characters