1--TEST-- 2Test function gzputs() by calling it with its expected arguments 3--SKIPIF-- 4<?php 5if (!extension_loaded("zlib")) { 6 print "skip - ZLIB extension not loaded"; 7} 8?> 9--FILE-- 10<?php 11 12$filename = __DIR__."/gzputs_basic.txt.gz"; 13$h = gzopen($filename, 'w'); 14$str = "Here is the string to be written. "; 15$length = 10; 16var_dump(gzputs( $h, $str ) ); 17var_dump(gzputs( $h, $str, $length ) ); 18gzclose($h); 19 20$h = gzopen($filename, 'r'); 21gzpassthru($h); 22gzclose($h); 23echo "\n"; 24unlink($filename); 25?> 26--EXPECT-- 27int(34) 28int(10) 29Here is the string to be written. Here is th 30