SplFileObject::setMaxLineLen()函數是PHP中的標準PHP庫(SPL)的內置函數,用於設置行長度的最大長度。
用法:
void SplFileObject::setMaxLineLen( $len )
參數:該函數接受單個參數$len,該參數用於指定行的最大長度。
Return values:此函數返回行的最大長度。默認值為0。
下麵的程序演示了PHP中的SplFileObject::setMaxLineLen()函數:
程序1:
<?php
// Create an SplFile Object
$gfg = new SplFileObject("gfg.txt");
// Print Length
var_dump($gfg->getMaxLineLen());
// Set length
$gfg->setMaxLineLen(20);
var_dump($gfg->getMaxLineLen());
?>
輸出:
int(0) int(20)
程序2:
<?php
// Create an Array
$GFG = array(
"dummy.txt",
"gfg.txt",
"frame.txt"
);
// Creating Spl Object
foreach ($GFG as &$arr)
{
// Create an SplFile Object
$gfg = new SplFileObject($arr);
// Print Length before
var_dump($gfg->getMaxLineLen());
// Set length
$gfg->setMaxLineLen(50);
echo "After = ";
// Print length after
var_dump($gfg->getMaxLineLen());
echo "</br>";
}
?>
輸出:
int(0) After = int(50) int(0) After = int(50) int(0) After = int(50)
參考: http://php.net/manual/en/splfileobject.setmaxlinelen.php
相關用法
- PHP SplFileObject eof()用法及代碼示例
- PHP SplFileObject ftell()用法及代碼示例
- PHP SplFileObject fstat()用法及代碼示例
- PHP SplFileObject ftruncate()用法及代碼示例
- PHP SplFileObject fread()用法及代碼示例
- PHP SplFileObject rewind()用法及代碼示例
- PHP SplFileObject seek()用法及代碼示例
- PHP SplFileObject fputcsv()用法及代碼示例
- PHP SplFileObject fwrite()用法及代碼示例
- PHP SplFileObject fgetss()用法及代碼示例
- PHP SplFileObject fgets()用法及代碼示例
- PHP SplFileObject fgetc()用法及代碼示例
- PHP SplFileObject getMaxLineLen()用法及代碼示例
- PHP SplFileObject flock()用法及代碼示例
- PHP SplFileObject current( )用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | SplFileObject setMaxLineLen() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。