php-src/ext/zlib/tests/gzfile_basic2.phpt
Niels Dossche 1e5f46fb20
Fix test conflict between gzfile_basic.phpt and gzfile_basic2.phpt
[ci skip]

This should fix the nightly failure.
2024-07-06 01:59:32 +02:00

36 lines
544 B
PHP

--TEST--
Test function gzfile() reading a plain relative file
--EXTENSIONS--
zlib
--FILE--
<?php
$plaintxt = <<<EOT
hello world
is a very common test
for all languages
EOT;
$dirname = 'gzfile_temp2';
$filename = $dirname.'/gzfile_basic2.txt';
mkdir($dirname);
$h = fopen($filename, 'w');
fwrite($h, $plaintxt);
fclose($h);
var_dump(gzfile( $filename ) );
unlink($filename);
rmdir($dirname);
?>
--EXPECT--
array(3) {
[0]=>
string(12) "hello world
"
[1]=>
string(22) "is a very common test
"
[2]=>
string(17) "for all languages"
}