SplFileObject::getMaxLineLen
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplFileObject::getMaxLineLen — 行の最大バイト数を取得する
説明
SplFileObject::setMaxLineLen() によってセットされる行の最大バイト数を取得します。
パラメータ
この関数にはパラメータはありません。
戻り値
SplFileObject::setMaxLineLen() でセットされる場合は行の最大バイト数を返します。デフォルトは 0
です。
例
例1 SplFileObject::getMaxLineLen() の例
<?php
$file = new SplFileObject("file.txt");
var_dump($file->getMaxLineLen());
$file->setMaxLineLen(20);
var_dump($file->getMaxLineLen());
?>
上の例の出力は、 たとえば以下のようになります。
int(0) int(20)
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google