下载集成工具phpstudy并安装,安装完成后,phpstudy已经集成了xdebug,
只需要设置一下就可以
其他选项菜单-php扩展及设置-php扩展-第一个选项xdebug打钩
第二步 浏览器 http://localhost/phpinfo.php
查看扩展是否被加载
显示这个就说明ok
然后 vscode 中 搜索并添加 phpdebug扩展
然后修改 vscode首选项 中配置
然后 F5
生成入口文件launch.json 不用管
选择这个
显示这样
然后 浏览器中 http://localhost:9000/phpinfo.php 取消 会发现控制台这个,说明前面都正常配置
然后 php.ini加上红色那句,ok
我的php.ini配置:
[XDebug]
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir ="D:\phpStudy\tmp\xdebug"
xdebug.trace_output_dir ="D:\phpStudy\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_autostart = 1
zend_extension="D:\phpStudy\php\php-5.3.29-nts\ext\php_xdebug.dll"