Searched refs:seek (Results 1 – 25 of 91) sorted by relevance
1234
/PHP-8.2/ext/spl/tests/ |
H A D | dit_006.phpt | 2 SPL: DirectoryIterator and seek 6 $di->seek(2); 14 echo "With seek(2) we get $n\n"; 15 $di->seek(0); 22 echo "With seek(0) we get $m\n"; 31 echo "Without seek we get $o\n"; 35 $di->seek($o+1); 44 With seek(2) we get %d 45 With seek(0) we get %d 46 Without seek we get %d
|
H A D | bug68557.phpt | 11 $d->seek(0); 14 $d->seek(1); 17 $d->seek(2); 20 $d->seek(0); 23 $d->seek(1); 26 $d->seek(2); 29 $d->seek(0);
|
H A D | array_014.phpt | 2 SPL: ArrayIterator::seek() 8 $it->seek(5); 10 $it->seek(4); 14 $it->seek(-1); 24 $it->seek(12); 35 $it->seek($pos++);
|
H A D | iterator_032.phpt | 16 $it->seek(0); 23 $it->seek(2); 28 $it->seek(3); 44 Cannot seek to 0 which is below the offset 1 46 Cannot seek to 3 which is behind offset 1 plus count 2
|
H A D | array_021.phpt | 2 SPL: ArrayObject::seek() and exceptions 8 public function seek($key) 19 $test->seek('bar'); 28 foo::seek(bar)
|
H A D | iterator_004.phpt | 51 public function seek($index): void 78 $l->seek($i); 107 SeekableNumericArrayIterator::seek(1) 125 SeekableNumericArrayIterator::seek(1) 130 SeekableNumericArrayIterator::seek(2) 135 SeekableNumericArrayIterator::seek(3)
|
H A D | bug70561.phpt | 2 Bug #70561 (DirectoryIterator::seek should throw OutOfBoundsException) 15 $di->seek($cnt+1);
|
H A D | bug45614.phpt | 37 echo "\n--> Rewind, seek and show the first two items:\n"; 39 $ai->seek(0); 55 --> Rewind, seek and show the first two items:
|
H A D | bug49723.phpt | 2 LimitIterator: do not seek if not needed
|
/PHP-8.2/ext/oci8/tests/ |
H A D | lob_031.phpt | 2 Test LOB->read(), LOB->seek() and LOB->tell() with nul bytes in data 30 $blob->seek(10, OCI_SEEK_CUR); 61 // Now seek 62 $row[0]->seek(1); 65 $row[0]->seek(8); 68 $row[0]->seek(20); 72 $row[0]->seek(25); 76 $row[0]->seek(2, OCI_SEEK_SET); 80 $row[0]->seek(2, OCI_SEEK_CUR); 84 $row[0]->seek(3, OCI_SEEK_END); [all …]
|
H A D | lob_temp.phpt | 18 var_dump($blob->seek(0, SEEK_SET)); 26 var_dump($blob->seek(0, SEEK_SET));
|
H A D | lob_044.phpt | 35 var_dump($blob->seek(0)); 38 var_dump($blob->seek(0));
|
/PHP-8.2/ext/spl/tests/SplFileObject/ |
H A D | bug62004.phpt | 2 Bug #62004 (SplFileObject: fgets after seek returns wrong line) 7 $f->seek(0); 9 $f->seek(1); 11 $f->seek(2);
|
H A D | gh8121.phpt | 2 GH-8121 (SplFileObject - seek and key with csv file inconsistent) 14 $file->seek(0); 16 $file->seek(1); 18 $file->seek(2); 20 $file->seek(3);
|
H A D | bug46053.phpt | 2 Bug #46053 (SplFileObject::seek - Endless loop) 8 $x->seek(10); 9 $x->seek(0);
|
H A D | SplFileObject_seek_error_001.phpt | 2 SplFileObject::seek function - test parameters 7 $obj->seek(-1); 13 SplFileObject::seek(): Argument #1 ($line) must be greater than or equal to 0
|
H A D | bug75917.phpt | 2 Bug #75917 (SplFileObject::seek broken with CSV flags) 15 $tmp->seek(23); 19 $tmp->seek(23);
|
H A D | bug46569.phpt | 2 Bug #46569 (SplFileObject: fgetcsv after seek returns wrong line) 6 $file->seek(1);
|
H A D | SplFileObject_seek_error002.phpt | 2 SPL: SplFileObject::seek error 001 15 $s->seek(20);
|
H A D | SplFileObject_seek_basic.phpt | 2 SPL: SplFileObject::seek basic 15 $s->seek(2);
|
H A D | SplFileObject_next_variation002.phpt | 14 $s->seek(2); 21 $s->seek(2);
|
H A D | fileobject_getcurrentline_basic.phpt | 13 $s->seek(1);
|
H A D | SplFileObject_key_basic.phpt | 15 $s->seek(3);
|
/PHP-8.2/ext/standard/tests/file/ |
H A D | fseek_variation3.phpt | 18 echo "after -4 seek: ".bin2hex(fread($h,1))."\n"; 20 echo "after seek back 1: ".bin2hex(fread($h,1))."\n"; 22 echo "after seek back 20: ".bin2hex(fread($h,1))."\n"; 40 after -4 seek: 42 after seek back 1: 39 44 after seek back 20:
|
H A D | feof_basic.phpt | 47 echo "*** testing feof after a seek to near the beginning ***\n"; 51 echo "*** testing feof after a seek to end ***\n"; 55 echo "*** testing feof after a seek passed the end ***\n"; 90 *** testing feof after a seek to near the beginning *** 92 *** testing feof after a seek to end *** 94 *** testing feof after a seek passed the end ***
|
Completed in 20 milliseconds
1234