一、安装PHP的xdebug扩展
安装xdebug(技巧,为了找到适配的版本,让xdebug网站根据phpinfo()函数输出分析找到对应的方法及安装步骤;如果安装了多个PHP版本的话,尽量用phpinfo()在web页面的输出,而不要用php -i在控制台的输出,以防止版本不对应)
去官网https://xdebug.org/download.php
分析结果(按照每一步去执行)
修改php.ini时,配置如下,可以丰富一下第8步的信息
[xdebug]
zend_extension = xdebug.so
xdebug.remote_enable = On
xdebug.remote_handler = dbgp
xdebug.remote_host= localhost
xdebug.remote_port = #这个端口不要被占用即可,可以自行指定
xdebug.idekey = PHPSTORM
xdebug.remote_autostart=
xdebug.remote_log=/var/tmp/xdebug.log
二、IDE中配置xdebug相关信息
IDE(PHPstorm)配置
配置xdebug
配置要监控的项目