php-src/ext/zlib/tests/gzencode_variation1-win32.phpt
Nikita Popov c5401854fc Run tidy
This should fix most of the remaining issues with tabs and spaces
being mixed in tests.
2020-09-18 14:28:32 +02:00

39 lines
694 B
PHP

--TEST--
Test gzencode() function : variation
--SKIPIF--
<?php
if( substr(PHP_OS, 0, 3) != "WIN" ) {
die("skip only for Windows");
}
if (!extension_loaded("zlib")) {
print "skip - ZLIB extension not loaded";
}
?>
--FILE--
<?php
if(!function_exists("gzdecode")) {
function gzdecode($data)
{
return gzinflate(substr($data,10,-8));
}
}
include(__DIR__ . '/data.inc');
echo "*** Testing gzencode() : variation ***\n";
echo "\n-- Testing multiple compression --\n";
$output = gzencode(gzencode($data));
$back = gzdecode(gzdecode($output));
var_dump($data === $back);
?>
--EXPECT--
*** Testing gzencode() : variation ***
-- Testing multiple compression --
bool(true)