summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/directory_wrapper_fstat_basic.phpt
blob: 2c3aea79cfd34a828a7e7cba1fbeba0099421053 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Test function fstat() on directory wrapper
--FILE--
<?php
$d = dirname(__FILE__);
$h = opendir($d);
var_dump(fstat($h));
closedir($h);
?>
===DONE===
--EXPECT--
bool(false)
===DONE===