1--TEST-- 2Test function gzfile() reading a plain relative file 3--SKIPIF-- 4<?php 5if (!extension_loaded('zlib')) die ('skip zlib extension not available in this build'); 6?> 7--FILE-- 8<?php 9$plaintxt = <<<EOT 10hello world 11is a very common test 12for all languages 13EOT; 14$dirname = 'gzfile_temp'; 15$filename = $dirname.'/gzfile_basic2.txt'; 16mkdir($dirname); 17$h = fopen($filename, 'w'); 18fwrite($h, $plaintxt); 19fclose($h); 20 21 22var_dump(gzfile( $filename ) ); 23 24unlink($filename); 25rmdir($dirname); 26?> 27--EXPECT-- 28array(3) { 29 [0]=> 30 string(12) "hello world 31" 32 [1]=> 33 string(22) "is a very common test 34" 35 [2]=> 36 string(17) "for all languages" 37} 38