需要在Ubuntu 下使用 VS Code 调试 PHP,网上有关方法大都已经过时,主要原因有二:一是PHP已经到8.1版本,二是xdebug也到3.2版本。因此,需要自己摸索,记录如下。
首先还是要在VS Code安装xdebug 插件

其次,在ubuntu里安装xdebug
sudo apt install php8.1-xdebug
随后,编辑/etc/php/8.1/fpm/conf.d/20-xdebug.ini
sudo vi /etc/php/8.1/fpm/conf.d/20-xdebug.ini
输入以下内容
zend_extension=xdebug.so
xdebug.mode=debug
xdebug.start_with_request=yes
xdebug.discover_client_host=true
xdebug.client_host=localhost
xdebug.client_port = 9003
xdebug.idekey=VSCODE
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.cli_color = 2
前面第一段的内容很重要。后面两段就随意了,可以不设置。然后重启PHP就可以调试PHP代码了
sudo systemctl restart php8.1-fpm
网上早期文章所说的配置xdebug.remote_enable, xdebug.remote_autostart等有关remote的参数配置从xdebug3.0开始就无效了,不能再用了。