File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / zlib / tests / 003.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:05 2012 UTC (12 years, 5 months ago) by misho
Branches: php, MAIN
CVS tags: v5_3_10, HEAD
php

--TEST--
gzencode()
--SKIPIF--
<?php if (!extension_loaded("zlib") || !function_exists("gzdecode")) print "skip"; ?>
--FILE--
<?php
$original = str_repeat("hallo php",4096);
$packed = gzencode($original);
echo strlen($packed)." ".strlen($original). "\n";
if (strcmp($original, gzdecode($packed)) == 0) echo "Strings are equal";
?>
--EXPECT--
118 36864
Strings are equal

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>