php-src/ext/standard/tests/file/statcache-corruption.phpt
2004-02-23 21:07:10 +00:00

14 lines
159 B
PHP

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