realpath_cache.phpt 423 B

123456789101112131415161718192021222324252627282930
  1. --TEST--
  2. realpath_cache_size() and realpath_cache_get()
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) == 'WIN') {
  6. die('skip not on Windows');
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. var_dump(realpath_cache_size());
  12. $data = realpath_cache_get();
  13. var_dump($data[__DIR__]);
  14. echo "Done\n";
  15. ?>
  16. --EXPECTF--
  17. int(%d)
  18. array(4) {
  19. ["key"]=>
  20. %s(%f)
  21. ["is_dir"]=>
  22. bool(true)
  23. ["realpath"]=>
  24. string(%d) "%sfile"
  25. ["expires"]=>
  26. int(%d)
  27. }
  28. Done