mirror of
https://github.com/php/php-src.git
synced 2026-04-21 23:18:13 +02:00
16 lines
254 B
PHP
16 lines
254 B
PHP
--TEST--
|
|
SPL: SplFileObject::getMaxLineLen()
|
|
--CREDITS--
|
|
H�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
|