mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
13 lines
191 B
PHP
13 lines
191 B
PHP
--TEST--
|
|
Test function fstat() on zlib wrapper
|
|
--EXTENSIONS--
|
|
zlib
|
|
--FILE--
|
|
<?php
|
|
$f = __DIR__."/004.txt.gz";
|
|
$h = gzopen($f, "r");
|
|
var_dump(fstat($h));
|
|
fclose($h);
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|