downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

SplFileObject::hasChildren> <SplFileObject::getFlags
[edit] Last updated: Fri, 18 Sep 2009

view this page in

SplFileObject::getMaxLineLen

(PHP 5 >= 5.1.0)

SplFileObject::getMaxLineLenGet maximum line length

Описание

public int SplFileObject::getMaxLineLen ( void )

Gets the maximum line length as set by SplFileObject::setMaxLineLen.

Параметри

Тази функция няма параметри.

Връщани стойности

Returns the maximum line length if one has been set with SplFileObject::setMaxLineLen, default is 0.

Примери

Example #1 SplFileObject::getMaxLineLen example

<?php
$file 
= new SplFileObject("file.txt");
var_dump($file->getMaxLineLen());

$file->setMaxLineLen(20);
var_dump($file->getMaxLineLen());
?>

Примерът по-горе ще изведе нещо подобно на:

int(0)
int(20)

Вж. също

  • Classname::Method



add a note add a note User Contributed Notes SplFileObject::getMaxLineLen
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites