mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02: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
13 lines
197 B
PHP
13 lines
197 B
PHP
--TEST--
|
|
Test function fstat() on zlib wrapper
|
|
--EXTENSIONS--
|
|
zlib
|
|
--FILE--
|
|
<?php
|
|
$f = __DIR__."/data/test.txt.gz";
|
|
$h = gzopen($f, "r");
|
|
var_dump(fstat($h));
|
|
fclose($h);
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|