Searched refs:gzcompress (Results 1 – 13 of 13) sorted by relevance
/PHP-5.3/ext/zlib/tests/ |
H A D | gzcompress_error1.phpt | 2 Test gzcompress() function : error conditions 11 /* Prototype : string gzcompress(string data [, int level]) 21 echo "*** Testing gzcompress() : error conditions ***\n"; 24 echo "\n-- Testing gzcompress() function with Zero arguments --\n"; 25 var_dump( gzcompress() ); 32 var_dump( gzcompress($data, $level, $extra_arg) ); 36 var_dump(gzcompress($data, $bad_level)); 46 var_dump(gzcompress($testclass)); 48 var_dump(gzcompress($data, $testclass)); 54 *** Testing gzcompress() : error conditions *** [all …]
|
H A D | gzcompress_variation1.phpt | 2 Test gzcompress() function : variation 11 /* Prototype : string gzcompress(string data [, int level]) 19 echo "*** Testing gzcompress() : variation ***\n"; 24 $output = gzcompress($data); 26 var_dump(md5(gzcompress($output))); 31 *** Testing gzcompress() : variation ***
|
H A D | 005.phpt | 2 gzcompress()/gzuncompress() and invalid params 8 var_dump(gzcompress()); 9 var_dump(gzcompress("", 1000)); 10 var_dump(gzcompress("", -1)); 12 var_dump(gzcompress("")); 13 var_dump(gzcompress("", 9)); 19 var_dump($data1 = gzcompress($string)); 20 var_dump($data2 = gzcompress($string, 9)); 38 Warning: gzcompress() expects at least 1 parameter, 0 given in %s on line %d 41 Warning: gzcompress(): compression level (1000) must be within -1..9 in %s on line %d
|
H A D | gzcompress_basic1.phpt | 2 Test gzcompress() function : basic functionality 11 /* Prototype : string gzcompress(string data [, int level]) 23 echo "*** Testing gzcompress() : basic functionality ***\n"; 30 // Calling gzcompress() with all possible arguments 35 $output = gzcompress($data, $i); 43 $output = gzcompress($smallstring, $i); 48 // Calling gzcompress() with mandatory arguments 50 var_dump( bin2hex(gzcompress($smallstring) )); 55 *** Testing gzcompress() : basic functionality ***
|
H A D | 002.phpt | 2 gzcompress()/gzuncompress() 8 $packed=gzcompress($original); 15 $packed=gzcompress($original, 9);
|
H A D | gzinflate_error1.phpt | 21 echo "\n-- Testing gzcompress() function with Zero arguments --\n"; 24 echo "\n-- Testing gzcompress() function with more than expected no. of arguments --\n"; 32 $compressed = gzcompress($data); 53 -- Testing gzcompress() function with Zero arguments -- 58 -- Testing gzcompress() function with more than expected no. of arguments --
|
H A D | bug_34821.phpt | 25 var_dump($s === gzuncompress(gzcompress($s)));
|
H A D | gzuncompress_basic1.phpt | 23 $compressed = gzcompress($data);
|
H A D | bug60761.phpt | 17 // gzcompress on CLI or CGI
|
H A D | gzuncompress_error1.phpt | 35 $compressed = gzcompress($data);
|
/PHP-5.3/ext/zlib/ |
H A D | zlib.c | 100 static PHP_FUNCTION(gzcompress); 210 PHP_FE(gzcompress, arginfo_gzcompress) 491 static PHP_FUNCTION(gzcompress) in PHP_FUNCTION() argument
|
/PHP-5.3/ext/phar/tests/zip/files/ |
H A D | corrupt_zipmaker.php.inc | 262 $data = gzcompress($data);
|
/PHP-5.3/ |
H A D | run-tests.php | 1728 $post = gzcompress($post, 9);
|
Completed in 20 milliseconds