summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/statcache-corruption.phpt
blob: 7fa391624cec620d9dd411c7b95e0243141a759c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
statcache corruption
--FILE--
<?php
$a = stat(__FILE__);
is_link(__FILE__);
$b = stat(__FILE__);
print_r(array_diff($a, $b));
?>
--EXPECT--
Array
(
)