组态

看看你的 php.ini 配置文件并启用 Xdebug,添加以下语句:

[Xdebug]
zend_extension=<full_path_to_xdebug_extension>
xdebug.remote_enable=1
xdebug.remote_host=<the host where PhpStorm is running (e.g. localhost)>
xdebug.remote_port=<the port to which Xdebug tries to connect on the host where PhpStorm is running (default 9000)>

例如,使用 Wamp 配置我有:

; XDEBUG Extension

zend_extension = "d:/wamp/bin/php/php5.5.12/zend_ext/php_xdebug-2.2.5-5.5-vc11.dll"
;
[xdebug]
xdebug.remote_enable = 1
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "d:/wamp/tmp"
xdebug.show_local_vars=0
xdebug.remote_host=localhost
xdebug.remote_port=9000

重启 Apache

然后在 shell 中执行此命令以验证 Xdebug 是否正确运行:

php --version

一旦你的 PHP 创建项目,如果你想调试它,你必须设置你的 PHP 解释器Xdebug 的设置

https://i.stack.imgur.com/FKh7B.jpg

https://i.stack.imgur.com/OovJH.jpg

https://i.stack.imgur.com/rVkD4.jpg

https://i.stack.imgur.com/uMmrd.jpg

https://i.stack.imgur.com/55XZm.jpg

https://i.stack.imgur.com/3YQ4D.jpg

https://i.stack.imgur.com/qLwL5.jpg

https://i.stack.imgur.com/p03IG.jpg

如果使用 php-fpm,则进行配置调整

如果是,则 Xdebug 端口 9000 与默认的 php-fpm 端口冲突。

你必须在 php-fpmXdebug 中选择其他端口。

此外,当使用 php-fpm 时,你必须重新启动 php-fpm 才能使 php-ini 文件的任何更改生效。

使用 Xdebug.log 文件

在某些情况下,你需要记录服务器上的日志。日志文件可以帮助你解决问题。

官方文档将帮助你执行此功能

在试图找出安装中的损坏时,它可以提供很多帮助。

更多的信息

官方文档中提供了更多详细信息

https://www.jetbrains.com/help/phpstorm/10.0/configuring-xdebug.html