summaryrefslogtreecommitdiff
path: root/ext/spl/tests/fileobject_getmaxlinelen_basic.phpt
blob: 49cf536f89de7fe05eb3e820dabe8bc44970ef18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--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