Home
last modified time | relevance | path

Searched refs:gzencode (Results 1 – 11 of 11) sorted by relevance

/PHP-5.3/ext/zlib/tests/
H A Dgzencode_error1.phpt2 Test gzencode() function : error conditions
18 * Test error cases for gzencode
21 echo "*** Testing gzencode() : error conditions ***\n";
25 var_dump( gzencode() );
37 var_dump(gzencode($data, $bad_level));
41 var_dump(gzencode($data, $level, $bad_mode));
51 var_dump(gzencode($testclass));
52 var_dump(gzencode($data, $testclass));
53 var_dump(gzencode($data, -1, 99.99));
54 var_dump(gzencode($data, -1, $testclass));
[all …]
H A D007.phpt2 gzencode() and invalid params
8 var_dump(gzencode());
9 var_dump(gzencode(1,1,1,1));
10 var_dump(gzencode("", -10));
11 var_dump(gzencode("", 100));
12 var_dump(gzencode("", 1, 100));
14 var_dump(gzencode("", -1, 1));
15 var_dump(gzencode("", 9, 2));
22 var_dump(gzencode($string, 9, 3));
24 var_dump(gzencode($string, -1, 1));
[all …]
H A Dgzencode_variation2.phpt2 Test gzencode() function : variation - verify header contents with all encoding modes
12 /* Prototype : string gzencode ( string $data [, int $level [, int $encoding_mode ]] )
18 echo "*** Testing gzencode() : variation ***\n";
23 var_dump(bin2hex(gzencode($data, -1)));
24 var_dump(bin2hex(gzencode($data, -1, FORCE_GZIP)));
25 var_dump(bin2hex(gzencode($data, -1, FORCE_DEFLATE)));
30 *** Testing gzencode() : variation ***
H A Dgzencode_variation1.phpt2 Test gzencode() function : variation
12 /* Prototype : string gzencode ( string $data [, int $level [, int $encoding_mode ]] )
20 echo "*** Testing gzencode() : variation ***\n";
23 $output = gzencode($data);
24 var_dump(bin2hex(gzencode($output)));
29 *** Testing gzencode() : variation ***
H A Dgzencode_variation1-win32.phpt2 Test gzencode() function : variation
16 /* Prototype : string gzencode ( string $data [, int $level [, int $encoding_mode ]] )
32 echo "*** Testing gzencode() : variation ***\n";
35 $output = gzencode(gzencode($data));
42 *** Testing gzencode() : variation ***
H A Dgzencode_basic1.phpt2 Test gzencode() function : basic functionality
11 /* Prototype : string gzencode ( string $data [, int $level [, int $encoding_mode ]] )
18 * Test basic function of gzencode
23 echo "*** Testing gzencode() : basic functionality ***\n";
30 // Calling gzencode() with various compression levels
35 $output = gzencode($data, $i);
46 $output = gzencode($smallstring, $i);
57 *** Testing gzencode() : basic functionality ***
H A D003.phpt2 gzencode()
8 $packed = gzencode($original);
H A Dbug_34821.phpt26 var_dump($s === gzinflate(substr(gzencode($s), 10, -8)));
/PHP-5.3/ext/standard/tests/filters/
H A Dfilter_errors_zlib_inflate.phpt8 filter_errors_test('zlib.inflate', gzencode(b'42'));
/PHP-5.3/ext/zlib/
H A Dzlib.c104 static PHP_FUNCTION(gzencode);
214 PHP_FE(gzencode, arginfo_gzencode)
857 static PHP_FUNCTION(gzencode) in PHP_FUNCTION() argument
/PHP-5.3/
H A Drun-tests.php1714 $post = gzencode($post, 9, FORCE_GZIP);

Completed in 26 milliseconds