【发布时间】:2016-12-02 17:53:19
【问题描述】:
我是第一次使用 xDebug。一切正常,但是当我想继续localhost/phpmyadmin 时,它想开始调试(我这里没有断点)。
我怎样才能只为 phpmyadmin 禁用它?
我的配置:
[XDebug]
zend_extension = "C:\xampp\php\ext\php_xdebug.dll"
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "C:\xampp\tmp"
xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.remote_enable = on
xdebug.remote_handler = "dbgp"
xdebug.remote_host = localhost
xdebug.remote_port = 9000
xdebug.trace_output_dir = "C:\xampp\tmp"
xdebug.collect_return="0"
我正在使用 XAMPP,PhpStorm。
【问题讨论】: