Lines Matching refs:gzencode
2 Test gzencode() function : basic functionality
12 * Test basic function of gzencode
17 echo "*** Testing gzencode() : basic functionality ***\n";
24 // Calling gzencode() with various compression levels
29 $output = gzencode($data, $i);
40 $output = gzencode($smallstring, $i);
48 // Calling gzencode() with mandatory arguments
50 var_dump(bin2hex(gzencode($smallstring)));
52 echo "\n-- Testing gzencode with mode specified --\n";
53 var_dump(bin2hex(gzencode($smallstring, -1, FORCE_GZIP)));
57 *** Testing gzencode() : basic functionality ***
106 -- Testing gzencode with mode specified --