mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
- Use INI sections - Use CGI sections - Move data into a subfolder - Remove ZPP tests - Fix various bugs within tests - Simplify some Found while working on #18879
22 lines
409 B
PHP
22 lines
409 B
PHP
--TEST--
|
|
Test function gzwrite() by calling it when file is opened for reading
|
|
--EXTENSIONS--
|
|
zlib
|
|
--FILE--
|
|
<?php
|
|
|
|
$filename = __DIR__."/data/test.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)
|