PageRenderTime 56ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/hphp/test/zend/good/ext/standard/tests/file/statcache-corruption.php

http://github.com/facebook/hiphop-php
PHP | 6 lines | 6 code | 0 blank | 0 comment | 0 complexity | d26fd2ad7f27a7c26a729545a9dc9981 MD5 | raw file
Possible License(s): LGPL-2.1, BSD-2-Clause, BSD-3-Clause, MPL-2.0-no-copyleft-exception, MIT, LGPL-2.0, Apache-2.0
  1. <?hh <<__EntryPoint>> function main(): void {
  2. $a = stat(__FILE__);
  3. is_link(__FILE__);
  4. $b = stat(__FILE__);
  5. print_r(array_diff($a, $b));
  6. }