有没有办法从Visual Studio Code中将当前* .php文件作为PHP脚本运行?我发现的信息表明,如果你安装了Xdebug,你可以调试代码,但是感觉很奇怪,你不能只是运行代码。
(这是2000年左右所有编辑的标准功能,但现在变得越来越难找......)
答案 0 :(得分:3)
我说编辑器没有这样的功能,因为有第三方扩展实现了它...你需要安装Runner。然后, Ctrl + Shift + R 在输出窗格中启动脚本:
PHP已配置out of the box:
const defaultLanguageMap = {
bat: '',
clojure: 'clj',
go: 'go run',
javascript: 'node',
lua: 'lua',
perl6: 'perl6',
perl: 'perl',
php: 'php',
powershell: 'powershell -noninteractive -noprofile -c -',
python: 'python',
r: 'Rscript',
ruby: 'ruby',
shell: 'bash',
typescript: 'tsc'
};