Annotation of embedaddon/php/ext/standard/tests/file/statcache-corruption.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: statcache corruption
                      3: --FILE--
                      4: <?php
                      5: $a = stat(__FILE__);
                      6: is_link(__FILE__);
                      7: $b = stat(__FILE__);
                      8: print_r(array_diff($a, $b));
                      9: ?>
                     10: --EXPECT--
                     11: Array
                     12: (
                     13: )

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>