
| Path : /proc/thread-self/root/usr/src/php/ext/spl/tests/ |
| Current File : //proc/thread-self/root/usr/src/php/ext/spl/tests/fileobject_getsize_basic.phpt |
--TEST-- SPL: SplFileObject::getSize --CREDITS-- H�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-- <?php $file = __DIR__ ."/data.txt"; unlink($file); ?> --EXPECT-- 6