1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 18:53:33 +02:00
Files
archived-php-src/ext/zlib/tests/gzencode_variation1-win32.phpt
T
2021-06-14 15:47:08 +02:00

29 lines
505 B
PHP

--TEST--
Test gzencode() function : variation
--EXTENSIONS--
zlib
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) != "WIN") {
die("skip only for Windows");
}
?>
--FILE--
<?php
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)