Lines Matching refs:gzencode
2 Test gzencode() function : basic functionality
10 * Test basic function of gzencode
15 echo "*** Testing gzencode() : basic functionality ***\n";
22 // Calling gzencode() with various compression levels
27 $output = gzencode($data, $i);
38 $output = gzencode($smallstring, $i);
46 // Calling gzencode() with mandatory arguments
48 var_dump(bin2hex(gzencode($smallstring)));
50 echo "\n-- Testing gzencode with mode specified --\n";
51 var_dump(bin2hex(gzencode($smallstring, -1, FORCE_GZIP)));
55 *** Testing gzencode() : basic functionality ***
104 -- Testing gzencode with mode specified --