icall_001.phpt 344 B

123456789101112131415161718192021222324
  1. --TEST--
  2. JIT ICALL: 001
  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.jit_debug=257
  9. --EXTENSIONS--
  10. opcache
  11. --FILE--
  12. <?php
  13. var_dump(true, 0, 42, -42, 0.0, 2.0,"hello", array());
  14. ?>
  15. --EXPECT--
  16. bool(true)
  17. int(0)
  18. int(42)
  19. int(-42)
  20. float(0)
  21. float(2)
  22. string(5) "hello"
  23. array(0) {
  24. }