码迷,mamicode.com
首页 > Web开发 > 详细

XAMPP + Phpstorm + Xdebug 实现断点调试

时间:2018-06-04 11:47:18      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:tar   file   添加   phpstorm   pst   文件中   oca   浏览器   inf   

 

  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 实现断点调试

标签:tar   file   添加   phpstorm   pst   文件中   oca   浏览器   inf   

原文地址:https://www.cnblogs.com/PLA-Artillery/p/9131505.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!