本教程适用于 homebrew 安装的 php@7.2

首先安装 xdebug 扩展:

sudo pecl install xdebug

创建 xdebug 配置文件:

/usr/local/etc/php/7.2/conf.d 目录下创建 xdebug.ini 文件,并写入以下内容:

[xdebug]

xdebug.remote_autostart=1
xdebug.default_enable=1
xdebug.remote_port=9000
xdebug.remote_host=127.0.0.1
xdebug.remote_connect_back=1
xdebug.remote_enable=1

重启服务 valet restart

配置 PhpStorm:

点击菜单:Run -> Start Listening for PHP Debug Connections
在指定位置打上断点,浏览器输入网址就可以开始调试啦~

效果:

xdebug.png

配置参考:

xdebug-config.png

过程中遇到任何问题请在下方留言反馈 😄

发表评论