查找您的内容
php.ini并寻找XDebug。
将xdebug自动启动设置为false
xdebug.remote_autostart=0 xdebug.remote_enable=0
禁用您的分析器
xdebug.profiler_enable=0
请注意,即使禁用xdebug但已加载,也可能会导致性能下降。要禁用扩展本身的加载,您需要在php.ini中对其进行注释。查找如下所示的条目:
zend_extension = "/path/to/php_xdebug.dll"
并
;对其发表评论,例如
;zend_extension = …。
查看此帖子XDebug,如何禁用单个.php文件的远程调试?



