1.下載php
地址:https://xdebug.org/download.php;apache
注意apache架構信息(ts/nts,x8六、x64);架構
2. 安裝測試
(1).將拓展拷貝到PHP的拓展文件中(如:php\php5.6.25\ext);debug
(2).配置:io
a.開啓拓展:配置
extension=php_xdebug.dllxdebug
b.拓展對應的配置:file
xdebug.auto_trace = on
xdebug.collect_params = 0
xdebug.collect_return = on
xdebug.profiler_enable = on
xdebug.profiler_output_dir ="/php/xdebugoutput/xdebug_profiler.txt"
xdebug.trace_output_dir = "/php/xdebugoutput/xdebug_trace.txt"下載
參數說明請參考:https://xdebug.org/docs/all_settings#auto_trace
4.測試
使用phpinfo()輸出配置,若是配置項中有xdebug對應的信息,那麼,恭喜你,安裝成功了!