Annotation of embedaddon/php/ext/zlib/tests/gzread_error.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Test function gzread() by calling it more than or less than its expected arguments
        !             3: --SKIPIF--
        !             4: <?php 
        !             5: if (!extension_loaded("zlib")) {
        !             6:        print "skip - ZLIB extension not loaded"; 
        !             7: }
        !             8: ?>
        !             9: --FILE--
        !            10: <?php
        !            11: 
        !            12: $f = dirname(__FILE__)."/004.txt.gz";
        !            13: $h = gzopen($f, 'r');
        !            14: $length = 10; 
        !            15: $extra_arg = 'nothing'; 
        !            16: 
        !            17: var_dump(gzread( $h, $length, $extra_arg ) );
        !            18: 
        !            19: var_dump(gzread());
        !            20: 
        !            21: gzclose($h);
        !            22: 
        !            23: ?>
        !            24: ===DONE===
        !            25: --EXPECTF--
        !            26: 
        !            27: Warning: gzread() expects exactly 2 parameters, 3 given in %s on line %d
        !            28: bool(false)
        !            29: 
        !            30: Warning: gzread() expects exactly 2 parameters, 0 given in %s on line %d
        !            31: bool(false)
        !            32: ===DONE===

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