php-src/ext/standard/tests/file/statcache-corruption.phpt

14 lines
159 B
Plaintext
Raw Normal View History

--TEST--
statcache corruption
--FILE--
<?php
$a = stat(__FILE__);
is_link(__FILE__);
$b = stat(__FILE__);
print_r(array_diff($a, $b));
?>
--EXPECT--
Array
(
)