summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/directory_wrapper_fstat_basic.phpt
blob: 1e7f016e7f1f5d3e74c16cbd081e4f8fbfb1f176 (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===