Skip to content

Instantly share code, notes, and snippets.

@SourceCode
Last active September 4, 2016 00:50
Show Gist options
  • Save SourceCode/65b80ad2e824c52ab3d22d16a3e96014 to your computer and use it in GitHub Desktop.
Save SourceCode/65b80ad2e824c52ab3d22d16a3e96014 to your computer and use it in GitHub Desktop.
phpstorm xdebug config - update the <path>, <tmp dir> and your xdebug dll
; XDEBUG Extension
[xdebug]
zend_extension ="<path>/php_xdebug-*.dll"
xdebug.remote_enable = 1
xdebug.remote_port=9000
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 1
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir ="<tmp dir>"
xdebug.show_local_vars=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment