Skip to content

Instantly share code, notes, and snippets.

@5818959
Created September 22, 2020 07:18
Show Gist options
  • Save 5818959/b195f55073f4a8345a60748b3af3aabb to your computer and use it in GitHub Desktop.
Save 5818959/b195f55073f4a8345a60748b3af3aabb to your computer and use it in GitHub Desktop.
Xdebug config
[xdebug]
zend_extension="xdebug.so"
xdebug.remote_enable = 1
xdebug.remote_host = localhost
xdebug.remote_port = 9000
xdebug.remote_autostart = 1
;xdebug.remote_connect_back = 1
;xdebug.remote_handler = dbgp
;xdebug.idekey = "ide-key"
;xdebug.remote_log = "/tmp/xdebug.log"
xdebug.var_display_max_depth = -1
xdebug.var_display_max_children = -1
xdebug.var_display_max_data = -1
; General
;xdebug.auto_trace = off
;xdebug.collect_includes = on
;xdebug.collect_params = off
;xdebug.collect_return = off
;xdebug.default_enable = on
;xdebug.extended_info = 1
xdebug.manual_url = "http://www.php.net"
xdebug.show_local_vars = 0
xdebug.show_mem_delta = 0
xdebug.max_nesting_level = 1000
; Trace options
;xdebug.trace_format = 0
;xdebug.trace_output_dir = "/tmp"
;xdebug.trace_options = 0
;xdebug.trace_output_name = crc32
; Profiling
xdebug.profiler_enable = 0
xdebug.profiler_output_dir = "/tmp"
xdebug.profiler_append = 0
;xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_name = php_profile.callgrind.%H.%p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment