wfblog

1、phpstorm软件可以直接断点调试php代码。具体配置方法参考 http://blog.csdn.net/qq4551091/article/details/55258664 就可以了,不过只要在xampp/php/php.ini这个文件上进行修改就可以了,其他的可以不用配置。

下面的配置注意  zend_extension字段的路径要根据实际安装情况配置,有的集成开发环境没有 php_xdebug.dll 这个插件,没法用来调试。(2018年新版xampp也没有这个插件了)

[Xdebug]
zend_extension="K:\xampp\php\ext\php_xdebug.dll"
;这里是动态链接库的存放路径 建议使用绝对路径,默认xampp版本包含,如果没有,自行下载
xdebug.remote_enable=1
;是否允许远程终端 这里标示开启
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=localhost
xdebug.remote_port=9000
;这里表示服务器的监听端口
xdebug.idekey="PHPSTORM";
;这里是调试器的关键字 在Chrome以及FireFox中插件配置的时候要用到
View Code

  或参考   本地环境 XAMPP+phpStorm+XDebug+chrome 配置和断点调试  https://blog.csdn.net/clyao_123456/article/details/51103479

2、调试的时候直接点击那个debug虫子就可以了。

3、phpstorm激活  :  http://blog.51cto.com/phpecshop/1836703   或  https://www.cnblogs.com/liaokaichang/p/7675789.html (phpstorm激活方法)

4、PhpStorm2016.2版本 安装与破解   :   https://www.cnblogs.com/Jason-Jan/p/7918502.html#_label1

5、PhpStorm中设置终端字体大小   :  https://cloud.tencent.com/developer/ask/35335/answer/48739

 

6、PhpStorm下载网站 :https://www.getpostman.com/downloads/

分类:

技术点:

相关文章:

  • 2022-01-19
  • 2021-12-19
  • 2021-12-03
  • 2022-01-02
  • 2021-12-03
  • 2021-12-05
  • 2021-12-05
  • 2021-12-05
猜你喜欢
  • 2021-05-30
  • 2022-12-23
  • 2022-01-30
  • 2021-04-29
  • 2021-09-13
  • 2021-12-20
相关资源
相似解决方案