bug69281.phpt 394 B

123456789101112131415161718
  1. --TEST--
  2. Test that script cached info is correct with validate_timestamps disabled
  3. --INI--
  4. opcache.enable=1
  5. opcache.enable_cli=1
  6. opcache.file_update_protection=0
  7. opcache.validate_timestamps=0
  8. opcache.file_cache_only=0
  9. --EXTENSIONS--
  10. opcache
  11. --FILE--
  12. <?php
  13. var_dump(opcache_is_script_cached(__FILE__));
  14. var_dump(opcache_is_script_cached("nonexistent.php"));
  15. ?>
  16. --EXPECT--
  17. bool(true)
  18. bool(false)