mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
16 lines
254 B
PHP
16 lines
254 B
PHP
--TEST--
|
||
SPL: SplFileObject::getMaxLineLen()
|
||
--CREDITS--
|
||
H<EFBFBD>vard Eide <nucleuz at gmail.com>
|
||
#Testfest php.no
|
||
--INI--
|
||
include_path=.
|
||
--FILE--
|
||
<?php
|
||
$s = new SplFileObject( __FILE__ );
|
||
$s->setMaxLineLen( 7 );
|
||
echo $s->getMaxLineLen();
|
||
?>
|
||
--EXPECT--
|
||
7
|