1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 00:48:25 +02:00
Files
archived-php-src/ext/zlib/tests/gzencode_variation1-win32.phpt
T
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

45 lines
870 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
/* Prototype : string gzencode ( string $data [, int $level [, int $encoding_mode ]] )
* Description: Gzip-compress a string
* Source code: ext/zlib/zlib.c
* Alias to functions:
*/
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)