vs code 配置 php xdebug
Posted 新小弦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vs code 配置 php xdebug相关的知识,希望对你有一定的参考价值。
1.安装扩展 php debug
2.下载xdebug插件
做个页面输出phpinfo(),复制到这个页面 https://xdebug.org/wizard.php
提交后会告诉你机子要下载哪个版本;
注意给出的 zend_extension =
没有带双引号的话要自己加上;
加三个配置
xdebug.remote_enable = 1
xdebug.remote_port = 9010
xdebug.remote_autostart = 1
注意remote_port,默认9000,如果被其他应用占了,要换一个端口,
重启web服务;
vs code 切换到调试界面,点调试的绿色小箭头,选择php调试
生成一个配置文件,里面的两个端口号设置和xdebug.remote_port = 9010
一致,就可以运行浏览器调试了
以上是关于vs code 配置 php xdebug的主要内容,如果未能解决你的问题,请参考以下文章
[PHP] php, apache, VS Code安装与配置
json 用于PHP和JavaScript的VS Code调试配置
VS Code launch.json Xdebug 配置,用于在 Windows Server 8 中逐步调试 PHP 页面