XAMPP + Phpstorm + Xdebug 实现断点调试

Posted PLA-Artillery

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XAMPP + Phpstorm + Xdebug 实现断点调试相关的知识,希望对你有一定的参考价值。

 

  1、开启XAMPP,使用Thinkphp创建项目,添加PHP文件phpinfo.php, 写上phpinfo();

  2、使用Google浏览器地址栏输入:localhost/项目名称/public/phpinfo.php,可以看见php的信息,右键点击查看网页源码,CMD+A / CMD+C全部复制

  3、在这个网址下 https://xdebug.org/wizard.php 粘贴刚刚复制到信息,点击下方按钮,得到如下图PHP信息:

  

  4、按照官方提供 Instructions 中的步骤执行即可实现按照

  5、在/Applications/XAMPP/xamppfiles/etc/php.ini 文件中添加信息如下:

    [xdebug]
    zend_extension = /Applications/XAMPP/xamppfiles/lib/php/extensions/no-debug-non-zts-20170718/xdebug.so
    xdebug.idekey="PHPSTORM"
    xdebug.remote_handler = "dbgp"
    xdebug.remote_mode = "req"
    xdebug.remote_host=\'localhost\'
    xdebug.remote_enable=on
    xdebug.remote_port = 9000 //这是设置端口 可以改 只要下面这是phpstorm 一致就可以
    xdebug.remote_autostart = no

  CMD + S 保存退出  

  6、在Phpstorm配置如下: 

 

  A、配置php

  

 

 

  B、配置Debug

    

  C、添加Services

    

  D、添加调试项目

   

  

  

  E、运行

  

  

 

以上是关于XAMPP + Phpstorm + Xdebug 实现断点调试的主要内容,如果未能解决你的问题,请参考以下文章

mac+phpstorm+xampp断点调试

PhpStorm+Xampp+Xdebug搭建环境并部署应用

PhpStorm2018+Xdebug+XAMPP组合搭建PHP7.2调试环境

phpstorm10.0安装xdebug插件

PhpStorm中的Xdebug 配置

如何在 Windows 10 上将 Xdebug 3 连接到 PhpStorm?