1--TEST-- 2Test gzdeflate() function : variation 3--EXTENSIONS-- 4zlib 5--FILE-- 6<?php 7include(__DIR__ . '/data.inc'); 8 9echo "*** Testing gzdeflate() : variation ***\n"; 10 11 12 13echo "\n-- Testing multiple compression --\n"; 14$output = gzdeflate($data); 15var_dump( md5($output)); 16var_dump(md5(gzdeflate($output))); 17 18?> 19--EXPECT-- 20*** Testing gzdeflate() : variation *** 21 22-- Testing multiple compression -- 23string(32) "078554fe65e06f6ff01eab51cfc7ae9b" 24string(32) "86b9f895ef1377da5269ec3cb2729f71" 25