zoukankan      html  css  js  c++  java
  • phpstorm xdebug环境搭建

    下载 xdebug & php.ini 配置
    https://blog.csdn.net/github_38336924/article/details/90024015
    具体下载看上面链接文章(注意:下载低版本的xdebug,高版本容易报错)
    刚开始我用了3.0.4的版本死活不行,然后换了个旧点的搞定了。

    或者:

     php.ini 配置如下

    [XDebug]
    zend_extension="D:\Software\phpStudy\PHPTutorial\php\php-7.2.1-nts\ext\php_xdebug-2.7.2-7.2-vc15-nts.dll"
    xdebug.profiler_append = 0
    xdebug.profiler_enable = 1
    xdebug.profiler_enable_trigger = 0
    xdebug.profiler_output_dir="D:\Software\phpStudy\PHPTutorial\tmp\xdebug"
    xdebug.trace_output_dir="D:\Software\phpStudy\PHPTutorial\tmp\xdebug"
    xdebug.profiler_output_name = "cache.out.%t-%s"
    xdebug.remote_enable = 1
    xdebug.remote_handler = "dbgp"
    xdebug.remote_host = "127.0.0.1"
    xdebug.remote_port = 9002  
    xdebug.idekey= PHPSTORM  

    phpstorm 配置

    设置php版本

    端口配置

    DBGp 配置

    Servers 配置

    验证一下 虽然报错了一个 但是不影响

    测试

    debug

    浏览器的debug插件自己下载

    500超时

    IPCConnectTimeout 3000
        IPCCommTimeout 3000

     来源:https://blog.csdn.net/kuuhh/article/details/119038345

  • 相关阅读:
    改变checkbox默认样式
    svn clean up
    vue移动端弹框组件
    移动端滚动选择
    三目运算符判断三个条件
    Vue ---- Vuex 的第一次接触
    Vue2.0组件间数据传递
    es6
    JQuery------制作div模态框
    企业知识分享+团队协作神器之Confluence
  • 原文地址:https://www.cnblogs.com/laijinquan/p/15740933.html
Copyright © 2011-2022 走看看