当前位置:编程学习 > > 正文

phpstorm 菜单如何添加和修改(phpstorm 配置xdebug的示例代码)

时间:2022-03-31 00:41:33类别:编程学习

phpstorm 菜单如何添加和修改

phpstorm 配置xdebug的示例代码

最近买了个新本,重新配置下phpstorm xdebug,方便调试

提高调试效率是写程序的第一步 ---鲁迅

自2018年3月份之后,brew 安装php的方式发生改变,现在是

  • ?
  • 1
  • brew install php@7.2
  • 可以指定版本了,安装扩展的方式也完全不能用了,所以下载源码编译了

    下载xdebug

    官网: https://xdebug.org/download.php

    下载最稳定的版本 [版本2.6.1][1]

    编译源码

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • phpize
  • ./configure --with-php-config=/usr/local/cellar/php@7.2/7.2.16/bin/php-config
  • make && make install
  •  
  • installing shared extensions: /usr/local/cellar/php@7.2/7.2.16/pecl/20170718/
  • 编译到了这个目录,实际软连到了/usr/local/lib/php/pecl

    配置xdebug

    在/usr/local/etc/php/7.2/conf.d 新建ext-xdebug.ini 写入

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • [xdebug]
  • zend_extension="/usr/local/lib/php/pecl/20170718/xdebug.so"
  • xdebug.remote_enable=on
  • xdebug.remote_connect_back=1
  • xdebug.remote_port=6677
  • xdebug.remote_log=/usr/local/var/log/xdebug.log
  • xdebug.idekey=phpstorm
  • 重启php,查看是否安装成功

  • ?
  • 1
  • /usr/local/etc/php/7.2/conf.d php -m | grep xdebug
  • 搞定!!

    开始配置phpstorm

    设置端口

    phpstorm 菜单如何添加和修改(phpstorm 配置xdebug的示例代码)

    设置servers

    phpstorm 菜单如何添加和修改(phpstorm 配置xdebug的示例代码)

    配置debug config

    phpstorm 菜单如何添加和修改(phpstorm 配置xdebug的示例代码)

    访问url?xdebug_session_start=phpstorm,搞定

    phpstorm 菜单如何添加和修改(phpstorm 配置xdebug的示例代码)

    哈哈哈,配色有点浮夸,还没调

    原文链接:https://segmentfault.com/a/1190000018718715

    标签:
    上一篇下一篇

    猜您喜欢

    热门推荐