gzencode_variation1-win32.phpt 505 B

12345678910111213141516171819202122232425262728
  1. --TEST--
  2. Test gzencode() function : variation
  3. --EXTENSIONS--
  4. zlib
  5. --SKIPIF--
  6. <?php
  7. if (substr(PHP_OS, 0, 3) != "WIN") {
  8. die("skip only for Windows");
  9. }
  10. ?>
  11. --FILE--
  12. <?php
  13. include(__DIR__ . '/data.inc');
  14. echo "*** Testing gzencode() : variation ***\n";
  15. echo "\n-- Testing multiple compression --\n";
  16. $output = gzencode(gzencode($data));
  17. $back = gzdecode(gzdecode($output));
  18. var_dump($data === $back);
  19. ?>
  20. --EXPECT--
  21. *** Testing gzencode() : variation ***
  22. -- Testing multiple compression --
  23. bool(true)