• paip.xdebug 配置attilax总结.txt


    paip.xdebug 配置attilax总结.txt

    nts  not thead safe.

    -----php.ini
    [Xdebug]
    zend_extension_ts="D:\wamp\bin\mysql

    \mysql5.0.51b\php_xdebug-2.1.0-5.2-

    vc6.dll"
    xdebug.collect_params=On
    xdebug.collect_return=On
    xdebug.trace_output_dir="d:\xdebug" //

    设定函数调用监测信息的输出文件的路径。
    xdebug.profiler_enable=On  //打开效能监测

    器。
    xdebug.profiler_output_dir="d:\xdebug"

    //设定效能监测信息输出文件的路径。

    xdebug.remote_enable=On
    xdebug.remote_autostart=On
    xdebug.auto_trace=On

    ------------------更加详细的配置

    [Xdebug]
    zend_extension_ts="D:\wamp\bin\mysql

    \mysql5.0.51b\php_xdebug-2.1.0-5.2-

    vc6.dll"
    xdebug.collect_params=4
    xdebug.profiler_output_dir="D:\xdebug"
    xdebug.profiler_enable=On
    xdebug.profiler_enable_trigger=1
    xdebug.default_enable=On
    xdebug.show_exception_trace=On
    xdebug.show_local_vars=1
    xdebug.max_nesting_level=50
    xdebug.var_display_max_depth=6
    xdebug.dump_once=On
    xdebug.dump_globals=On
    xdebug.dump_undefined=On
    xdebug.dump.REQUEST=*
    xdebug.dump.SERVER=REQUEST_METHO

    D,REQUEST_URI,HTTP_USER_AGENT
    xdebug.trace_output_dir="D:\xdebug"
    ;然后打开远程调试
    xdebug.remote_enable=1
    ;自动开始也打开
    xdebug.remote_autostart=1

    ;开启自动跟踪
     
    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.remote_connect_back=1
    xdebug.remote_host=127.0.0.1
    xdebug.scream=1

  • 相关阅读:
    AGC015E Mr.Aoki Incubator
    luogu P3520 [POI2011]SMI-Garbage
    442.Find All Duplicates in an Array
    SICP_2.61-2.62
    sicp_2.59-2.60
    SICP_2.58
    SICP_2.56-2.57
    SICP_2.53-2.55
    SICP_2.52-2.53
    SICP_2.50-2.51
  • 原文地址:https://www.cnblogs.com/attilax/p/15199978.html
Copyright © 2020-2023  润新知