const_001.phpt 445 B

1234567891011121314151617181920212223242526
  1. --TEST--
  2. JIT CONST: defined
  3. --INI--
  4. opcache.enable=1
  5. opcache.enable_cli=1
  6. opcache.file_update_protection=0
  7. opcache.jit_buffer_size=1M
  8. opcache.protect_memory=1
  9. --EXTENSIONS--
  10. opcache
  11. --FILE--
  12. <?php
  13. function define_const() {
  14. define("CUSTOM_CONSTANT", 1);
  15. }
  16. function test_defined() {
  17. var_dump(defined("CUSTOM_CONSTANT"));
  18. define_const();
  19. var_dump(defined("CUSTOM_CONSTANT"));
  20. }
  21. test_defined();
  22. ?>
  23. --EXPECT--
  24. bool(false)
  25. bool(true)