mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
25 lines
490 B
PHP
25 lines
490 B
PHP
--TEST--
|
|
Test function gzputs() by calling it with its expected arguments
|
|
--EXTENSIONS--
|
|
zlib
|
|
--FILE--
|
|
<?php
|
|
|
|
$filename = __DIR__."/gzputs_basic.txt.gz";
|
|
$h = gzopen($filename, 'w');
|
|
$str = "Here is the string to be written. ";
|
|
$length = 10;
|
|
var_dump(gzputs( $h, $str ) );
|
|
var_dump(gzputs( $h, $str, $length ) );
|
|
gzclose($h);
|
|
|
|
$h = gzopen($filename, 'r');
|
|
gzpassthru($h);
|
|
gzclose($h);
|
|
echo "\n";
|
|
unlink($filename);
|
|
?>
|
|
--EXPECT--
|
|
int(34)
|
|
int(10)
|
|
Here is the string to be written. Here is th
|