解决安装Xdebug后访问本地项目特别慢
配置
[Xdebug] zend_extension = "E:\SoftWare\php\php-73\ext\php_xdebug-2.7.2-7.3-vc15-nts-x86_64.dll" xdebug.remote_enable = 1 xdebug.remote_host = "127.0.0.1" xdebug.remote_port = 9009 xdebug.remote_autostart = 1 xdebug.remote_handler = "dbgp" xdebug.idekey = PHPSTORM xdebug.profiler_enable = 0 xdebug.profiler_enable_trigger = 1 xdebug.default_enable = "Off" xdebug.remote_mode = req
参考链接
说明
- 设置
xdebug.remote_enable = 0
或者xdebug.remote_autostart = 0
,关掉这两项中的任意一项,就不会出现很慢的情况,但是关掉后就不能监听断点就行调试了; xdebug.remote_host
改成127.0.0.1
,而不是localhost
,phpstorm中的设置也是;xdebug.remote_port
只要是一个可用的端口并和phpstorm中的配置一样就行;- 剩下的配置的,按照配置就行了。
相关推荐
codeDig 2020-09-15
lemonzhangyan 2020-09-17
chenhaimeimeng 2020-09-15
icysonyk 2020-09-15
RemixGdc 2020-08-15
nicelife 2020-06-27
zhaowj00 2020-06-06
缘起宇轩阁 2020-04-22
xiaocainiao0 2020-04-22
nicelife 2020-03-26
poplpsure 2020-02-10
nicelife 2019-12-25
amberom 2019-12-05
MXstudying 2019-11-17
spinachcqb 2019-11-04
ROES 2011-05-05
很青的青蛙 2010-10-07
lff 2008-11-05
sundujing 2019-08-20