summaryrefslogtreecommitdiff
path: root/ext/zlib/tests/gzwrite_variation1.phpt
blob: 540a87985a109a3589d38e3f267767b9e903db7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--TEST--
Test function gzwrite() by calling it when file is opened for reading
--SKIPIF--
<?php
if (!extension_loaded("zlib")) {
    print "skip - ZLIB extension not loaded";
}
?>
--FILE--
<?php

$filename = __DIR__."/004.txt.gz";
$h = gzopen($filename, 'r');
$str = "Here is the string to be written. ";
$length = 10;
var_dump(gzwrite( $h, $str ) );
var_dump(gzread($h, 10));
var_dump(gzwrite( $h, $str, $length ) );
gzclose($h);

?>
--EXPECT--
int(0)
string(10) "When you'r"
int(0)