zoukankan      html  css  js  c++  java
  • xdebug + wincachegrind

    ;;;;;;;php.ini;;;;;;;;;;;;;;;;;;

    [Xdebug]
    zend_extension=D:Xamppphpextphp_xdebug.dll
    ;开启自动跟踪
    xdebug.auto_trace = On
    ;开启异常跟踪
    xdebug.show_exception_trace = On
    ;开启远程调试自动启动
    xdebug.remote_autostart = On
    ;开启远程调试
    xdebug.remote_enable = On
    ;收集变量
    xdebug.collect_vars = On
    ;收集返回值
    xdebug.collect_return = On
    ;收集参数
    xdebug.collect_params = On

    ;;phpstorm
    xdebug.remote_handler = dbgp
    xdebug.remote_host= localhost
    xdebug.remote_port = 9000
    xdebug.idekey = PHPSTORM

    ;;wincachegrind
    xdebug.profiler_enable=On
    xdebug.trace_output_dir="D:/wincachegrind"
    xdebug.profiler_output_dir="D:/wincachegrind"

    ----------------------------------------------------------------------------------

    xdebug使用简单配置

    xdebug.remote_enable=1
    xdebug.remote_handler=dbgp
    xdebug.remote_host=localhost
    xdebug.remote_port=9000
    xdebug.idekey=PHPSTORM

  • 相关阅读:
    List sort()方法
    解析器
    beautifulsoup库
    break 语句
    enumerate函数
    POJ 1915 Knight Moves
    POJ 1745 Divisibility
    POJ 1731 Orders
    POJ 1664 放苹果
    POJ 1606 Jugs
  • 原文地址:https://www.cnblogs.com/web21/p/6088674.html
Copyright © 2011-2022 走看看