php+storm+xdebug的配置
在调试Xedebug的时候按照一篇博文进行操作后出现问题,用的是PHPSTUDY
安装完Xdebug后,重新运行phpinfo.php出现下图情况:
解决方法:在phpini文件的[XDebug]下添加extension_dir=“D:\php5\ext”
成功解决;
还有个问题就是validate的Servers目录是在www就行了
贴上我的phpini中的xdebug配置
[XDebug]
zend_extension = “D:\phpstudy_pro\Extensions\php\php7.3.4nts\ext\php_xdebug-2.9.4-7.3-vc15-nts-x86_64.dll”
extension_dir=“D:\php5\ext”
xdebug.profiler_output_dir=“D:\phpstudy_pro\Extensions\php\php7.3.4nts\tmp\xdebug”
xdebug.trace_output_dir=“D:\phpstudy_pro\Extensions\php\php7.3.4nts\tmp\xdebug”
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.remote_autostart = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_name = “cache.out.%t-%s”
xdebug.remote_enable = 1
xdebug.remote_handler = “dbgp”
xdebug.remote_host = “127.0.0.1”
xdebug.remote_port = 9001
xdebug.remote_mode = “req”
xdebug.idekey = PHPSTORM
又出现了问题
之后运行却出现了所要测试的代码不能正常运行,显示cannot connect the sql server
后来找了很多原因。重装了phpstudy和所要测试的cms代码。将[xdebug]的基本配置写入php.ini。注意,写多了就可能会出问题。
[XDebug]
zend_extension = “F:\phpstudy_pro\Extensions\php\php7.3.4nts\ext\php_xdebug-2.9.4-7.3-vc15-nts-x86_64.dll”
xdebug.remote_handler = “dbgp”
xdebug.remote_host = “127.0.0.1”
xdebug.remote_port = 9001
xdebug.remote_mode = “req”
xdebug.idekey = PHPSTORM
成功运行