Searched refs:gzinflate (Results 1 – 18 of 18) sorted by relevance
/PHP-5.3/ext/zlib/tests/ |
H A D | 006.phpt | 2 gzdeflate()/gzinflate() and invalid params 22 var_dump(gzinflate()); 23 var_dump(gzinflate("")); 24 var_dump(gzinflate("asfwe", 1000)); 25 var_dump(gzinflate("asdf", -1)); 27 var_dump(gzinflate("asdf")); 28 var_dump(gzinflate("asdf", 9)); 30 var_dump(gzinflate($data1)); 31 var_dump(gzinflate($data2)); 33 var_dump(gzinflate($data2)); [all …]
|
H A D | gzinflate_error1.phpt | 2 Test gzinflate() function : error conditions 11 /* Prototype : string gzinflate(string data [, int length]) 19 echo "*** Testing gzinflate() : error conditions ***\n"; 22 var_dump( gzinflate() ); 28 var_dump( gzinflate($data, $length, $extra_arg) ); 34 var_dump(gzinflate($compressed, $short_len)); 45 var_dump(gzinflate($testclass)); 46 var_dump(gzinflate($data, $testclass)); 51 *** Testing gzinflate() : error conditions *** 55 Warning: gzinflate() expects at least 1 parameter, 0 given in %s on line %d [all …]
|
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 gzinflate($truncated);
|
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 | gzdeflate_basic1.phpt | 37 var_dump(strcmp(gzinflate($output), $data)); 45 var_dump(strcmp(gzinflate($output), $smallstring));
|
H A D | gzencode_variation1-win32.phpt | 25 return gzinflate(substr($data,10,-8));
|
/PHP-5.3/ext/phar/tests/ |
H A D | phar_setdefaultstub.phpt | 195 if (!function_exists('gzinflate')) { 197 ' gzinflate() function needed for zlib-compressed .phars'); 311 $data = gzinflate($data); 490 if (!function_exists('gzinflate')) { 492 ' gzinflate() function needed for zlib-compressed .phars'); 606 $data = gzinflate($data); 785 if (!function_exists('gzinflate')) { 787 ' gzinflate() function needed for zlib-compressed .phars'); 901 $data = gzinflate($data);
|
H A D | phar_createdefaultstub.phpt | 175 if (!function_exists('gzinflate')) { 177 ' gzinflate() function needed for zlib-compressed .phars'); 291 $data = gzinflate($data); 469 if (!function_exists('gzinflate')) { 471 ' gzinflate() function needed for zlib-compressed .phars'); 585 $data = gzinflate($data); 771 if (!function_exists('gzinflate')) { 773 ' gzinflate() function needed for zlib-compressed .phars'); 887 $data = gzinflate($data);
|
/PHP-5.3/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-5.3/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-5.3/ext/phar/ |
H A D | shortarc.php | 261 $data = gzinflate($data);
|
/PHP-5.3/ext/zlib/ |
H A D | zlib.c | 103 static PHP_FUNCTION(gzinflate); 213 PHP_FE(gzinflate, arginfo_gzinflate) 640 static PHP_FUNCTION(gzinflate) in PHP_FUNCTION() argument
|
/PHP-5.3/ |
H A D | NEWS | 3434 - Fixed bug #42663 (gzinflate() try to allocate all memory with truncated
|
Completed in 36 milliseconds