mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
13 lines
No EOL
192 B
PHP
13 lines
No EOL
192 B
PHP
--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===
|