mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
- Use INI sections - Use CGI sections - Move data into a subfolder - Remove ZPP tests - Fix various bugs within tests - Simplify some Found while working on #18879
29 lines
510 B
PHP
29 lines
510 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/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)
|