Searched refs:gzinflate (Results 1 – 22 of 22) sorted by relevance
/PHP-8.0/ext/zlib/tests/ |
H A D | 006.phpt | 2 gzdeflate()/gzinflate() and invalid params 26 var_dump(gzinflate("")); 27 var_dump(gzinflate("asfwe", 1000)); 30 var_dump(gzinflate("asdf", -1)); 35 var_dump(gzinflate("asdf")); 36 var_dump(gzinflate("asdf", 9)); 38 var_dump(gzinflate($data1)); 39 var_dump(gzinflate($data2)); 41 var_dump(gzinflate($data2)); 52 Warning: gzinflate(): data error in %s on line %d [all …]
|
H A D | gzinflate_error1.phpt | 2 Test gzinflate() function : error conditions 13 echo "*** Testing gzinflate() : error conditions ***\n"; 20 var_dump(gzinflate($compressed, $short_len)); 24 *** Testing gzinflate() : error conditions *** 28 Warning: gzinflate(): data error in %s on line %d
|
H A D | gzinflate_length.phpt | 2 gzinflate() and $length argument 10 $unpacked=gzinflate($packed, strlen($original)); 13 $unpacked=gzinflate($packed, strlen($original)*10); 16 $unpacked=gzinflate($packed, 1); 24 Warning: gzinflate(): insufficient memory in %s on line %d
|
H A D | 001.phpt | 2 gzdeflate()/gzinflate() 10 $unpacked=gzinflate($packed); 17 $unpacked=gzinflate($packed, 40000); 23 $unpacked=gzinflate($packed);
|
H A D | gzinflate-bug42663.phpt | 2 Bug #42663 (gzinflate() try to allocate all memory with truncated $data) 18 var_dump(gzinflate($truncated)); 25 Warning: gzinflate(): data error in %s on line %d
|
H A D | bug_34821.phpt | 24 var_dump($s === gzinflate(gzdeflate($s))); 26 var_dump($s === gzinflate(substr(gzencode($s), 10, -8)));
|
H A D | bug61287.phpt | 17 $inflated = gzinflate($deflated);
|
H A D | gzencode_variation1-win32.phpt | 19 return gzinflate(substr($data,10,-8));
|
H A D | gzdeflate_basic1.phpt | 31 var_dump(strcmp(gzinflate($output), $data)); 39 var_dump(strcmp(gzinflate($output), $smallstring));
|
/PHP-8.0/ext/standard/tests/streams/ |
H A D | bug77080.phpt | 13 var_dump(gzinflate($compressed) === $string);
|
H A D | bug75776.phpt | 11 'gz' => ['zlib.deflate', 'gzinflate'],
|
/PHP-8.0/ext/zlib/ |
H A D | zlib_arginfo.h | 146 ZEND_FUNCTION(gzinflate); 178 ZEND_FE(gzinflate, arginfo_gzinflate)
|
H A D | zlib.stub.php | 34 function gzinflate(string $data, int $max_length = 0): string|false {} function
|
H A D | zlib.c | 780 PHP_ZLIB_DECODE_FUNC(gzinflate, PHP_ZLIB_ENCODING_RAW);
|
/PHP-8.0/ext/phar/tests/ |
H A D | phar_createdefaultstub.phpt | 174 if (!function_exists('gzinflate')) { 176 ' gzinflate() function needed for zlib-compressed .phars'); 290 $data = gzinflate($data); 468 if (!function_exists('gzinflate')) { 470 ' gzinflate() function needed for zlib-compressed .phars'); 584 $data = gzinflate($data); 770 if (!function_exists('gzinflate')) { 772 ' gzinflate() function needed for zlib-compressed .phars'); 886 $data = gzinflate($data);
|
H A D | phar_setdefaultstub.phpt | 194 if (!function_exists('gzinflate')) { 196 ' gzinflate() function needed for zlib-compressed .phars'); 310 $data = gzinflate($data); 489 if (!function_exists('gzinflate')) { 491 ' gzinflate() function needed for zlib-compressed .phars'); 605 $data = gzinflate($data); 784 if (!function_exists('gzinflate')) { 786 ' gzinflate() function needed for zlib-compressed .phars'); 900 $data = gzinflate($data);
|
/PHP-8.0/ext/phar/tests/cache_list/files/ |
H A D | nophar.phar | 139 if (!function_exists('gzinflate')) { 141 ' gzinflate() function needed for zlib-compressed .phars'); 255 $data = gzinflate($data);
|
H A D | openssl.phar | 139 if (!function_exists('gzinflate')) { 141 ' gzinflate() function needed for zlib-compressed .phars'); 255 $data = gzinflate($data);
|
/PHP-8.0/ext/phar/tests/files/ |
H A D | include_path2.phar | 139 if (!function_exists('gzinflate')) { 141 ' gzinflate() function needed for zlib-compressed .phars'); 255 $data = gzinflate($data);
|
H A D | nophar.phar | 139 if (!function_exists('gzinflate')) { 141 ' gzinflate() function needed for zlib-compressed .phars'); 255 $data = gzinflate($data);
|
H A D | openssl.phar | 139 if (!function_exists('gzinflate')) { 141 ' gzinflate() function needed for zlib-compressed .phars'); 255 $data = gzinflate($data);
|
/PHP-8.0/ext/phar/ |
H A D | shortarc.php | 261 $data = gzinflate($data);
|
Completed in 33 milliseconds