Advertisement
P22DX

php.text

Jun 7th, 2020
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. phar.readonly = Off
  2. ; zephir
  3. ;extension = zephir_parser.so
  4. ; vld
  5. extension = vld.so
  6. vld.active = 0
  7.  
  8. ; Ulopcodes
  9. zend_extension = ulopcodes.so
  10. ulopcodes.enabled = 1
  11.  
  12. ; opcache
  13. zend_extension = opcache.so
  14. opcache.enable = 1
  15. opcache.enable_cli = 1
  16. ;opcache.jit_buffer_size = 32M
  17. ;opcache.jit = 5235
  18. ; opcache.jit_debug = 1
  19.  
  20. ; debug optimized opcodes
  21. ; opcache.opt_debug_level = 0x20000
  22.  
  23. ; Sets how much memory to use
  24. opcache.memmory_consumption = -1
  25. ;Sets how much memory should be used by OPcache for storing internal strings
  26. ;(e.g. classnames and the files they are contained in)
  27. opcache.interned_strings_buffer = 8
  28.  
  29. ; The maximum number of files OPcache will cache
  30. opcache.max_accelerated_files = 4000
  31.  
  32. ;How often (in seconds) to check file timestamps for changes to the shared
  33. ;memory storage allocation.
  34. opcache.revalidate_freq = 60
  35.  
  36. ;If enabled, a fast shutdown sequence is used for the accelerated code
  37. ;The fast shutdown sequence doesn't free each allocated block, but lets
  38. ;the Zend Engine Memory Manager do the work.
  39. ;
  40. opcache.fast_shutdown = 1
  41.  
  42. ; xdebug
  43. zend_extension = xdebug.so
  44.  
  45. ;xdebug.cli_color = 1
  46. xdebug.max_nesting_level =-1
  47. xdebug.var_display_max_children = -1
  48. xdebug.var_display_max_data= -1
  49. xdebug.var_display_max_depth = -1
  50. xdebug.scream = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement