php-src/ext/spl/tests/fileobject_getsize_basic.phpt

23 lines
341 B
Plaintext
Raw Normal View History

2008-06-12 20:46:00 +00:00
--TEST--
SPL: SplFileObject::getSize
--CREDITS--
H<EFBFBD>vard Eide <nucleuz at gmail.com>
#Testfest php.no
--INI--
include_path=.
--FILE--
<?php
$file = __DIR__ ."/data.txt";
file_put_contents($file, "foobar");
$s = new SplFileObject( $file );
echo $s->getSize();
?>
--CLEAN--
2008-07-02 12:24:45 +00:00
<?php
2008-06-12 20:46:00 +00:00
$file = __DIR__ ."/data.txt";
unlink($file);
2008-07-02 12:24:45 +00:00
?>
2008-06-12 20:46:00 +00:00
--EXPECT--
6