查看php版本
查看自己php的版本,使用:phpinfo() 函数
<?php
echo phpinfo();
Xdebug
Xdebug: Support — Tailored Installation Instructions
右击查看index.php源代码
并复制到Xdebug中
点击分析查看分析结果
修改php配置文件
vi /opt/homebrew/etc/php/7.4/conf.d/99-xdebug.ini
#安装完Xdebug自带
zend_extension = xdebug
#添加部分
xdebug.mode=debug
xdebug.remote_enable = On
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "localhost"
xdebug.remote_mode = "req"
xdebug.remote_port = 9000
xdebug.idekey = "PHPSTORM"
9000端口是phpstorm设置里面xdebug的端口,如果本地已经被占用了可以修改,修改路径是在phpstrom里面:file->settings->里面的PHP->Debug
idekey 必须要和xdebug配置的保存一致,
重启php
重启php环境,在刷新一下php网站的环境信息,里面就会有xdebug的描述,即配置成功
brew services restart [email protected]
添加php web Page配置
添加php web Page
添加server
特重要步骤
必须要去验证下是否可用,它会告诉你当前存在的问题或者是否已经可用,按照提示去修复即可。