🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# xdebug的安装和使用在phpstorm #### 在官网下载对应的版本x-debug版本 x-debug官网 [xdebug.org](http://xdebug.org) #### 使用向导 打开网址 [xdebug.org/wizard.php](http://xdebug.org/wizard.php) 把phpinfo的源代码复制进去 ### 安装之后 修改php.ini 复制xdebug路径之后 后面再添加这一段 然后保存文件 xdebug.remote\_enable=1 xdebug.remote\_handler = "dbgp" xdebug.remote\_host = "localhost" xdebug.remote\_mode = "req" xdebug.remote\_port = 9100 xdebug.idekey = "PHPSTORM" 端口好9100 需要和phpstorm的值匹配才可以 ### 输出信息查看是否安装上了xdebug ### 点击phpstorm右上角的add configuration 选择PHP web page-->右边点击 server添加一个server