PHP | SplFileObject getMaxLineLen() Function

The SplFileObject::getMaxLineLen() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get maximum line length.
Syntax:
int SplFileObject::getMaxLineLen( void )
Parameters: This function does not accept any parameter.
Return values: This function returns the maximum length of line. The default value is set to 0.
Below Programs illustrate the SplFileObject::getMaxLineLen() function in PHP:
Program 1:
| <?php  Â// Create an SplFile Object $file= newSplFileObject("gfg.txt");  Â// Print Length var_dump($file->getMaxLineLen());  Â// Create an SplFile Object $file= newSplFileObject(__FILE__);  Â// Print Length var_dump($file->getMaxLineLen());  Â?>  | 
Output:
int(0) int(0)
Program 2:
| <?php  Â// Create an SplFile Object $gfg= newSplFileObject("gfg.txt");  Â// Print Length var_dump($gfg->getMaxLineLen());  Â// Set length  $gfg->setMaxLineLen(20); var_dump($gfg->getMaxLineLen());  Â?>  | 
Output:
int(0) int(20)
Reference: http://php.net/manual/en/splfileobject.getmaxlinelen.php
 
				 
					


