zoukankan      html  css  js  c++  java
  • phpstorm xdebug配置

    phpstorm 8.0.3版本

    1.本身自带xdebug插件

    2.在xampp的php.ini中最后中添加(如果有[XDebug]配置替换)

    [XDebug]
    zend_extension = "D:Program Filesxamppphpextphp_xdebug.dll"
    ;xdebug.profiler_append = 0
    ;xdebug.profiler_enable = 1
    ;xdebug.profiler_enable_trigger = 0
    ;xdebug.profiler_output_dir = "D:Program Filesxampp mp"
    ;xdebug.profiler_output_name = "cachegrind.out.%t-%s"
    xdebug.remote_enable = On
    xdebug.remote_handler = "dbgp"
    xdebug.remote_host = "127.0.0.1"
    xdebug.remote_port = 9000
    ;xdebug.trace_output_dir = "D:Program Filesxampp mp"

    3.然后再配置 phpstorm  里的  

    php--xdebug设置 

    4.新建一个调试 

    5.设置一下 服务器路径和文件名

    然后可以随意地打断点,按那个小虫子按钮来调试程序了

  • 相关阅读:
    php 解析xml
    php
    php 设置自动加载某个页面
    Mac
    mysql
    Git
    C#
    C# 正则表达式
    C# ASCII码排序
    (转)datagridview 自定义列三步走
  • 原文地址:https://www.cnblogs.com/dengyibing/p/5416617.html
Copyright © 2011-2022 走看看