/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/spl/tests/SplFileObject/SplFileObject_key_fgets_and_seek.phpt
39 строк
667 B
George Peter Banyard
Fix test file name to not include a whitespace
31 май 2022, 13:28
31 май 2022, 13:28
fcba0a4
Код
Авторство
О чём код?
--TEST-- SplFileObject verify interactions between seeking, getting the key and fgets --FILE-- <?php $file = new SplTempFileObject(); for ($i = 0; $i < 100; $i++) { $file->fwrite("Foo $i\n"); } $file->seek(50); var_dump( ['line' => $file->key(), 'contents' => trim($file->fgets())], ['line' => $file->key(), 'contents' => trim($file->fgets())], ['line' => $file->key(), 'contents' => trim($file->fgets())], ); ?> --EXPECT-- array(2) { ["line"]=> int(50) ["contents"]=> string(6) "Foo 50" } array(2) { ["line"]=> int(51) ["contents"]=> string(6) "Foo 51" } array(2) { ["line"]=> int(52) ["contents"]=> string(6) "Foo 52" }