PHP Debuging with Visual Studio Code full guide.

preview_player
Показать описание
Step by Step.
1.) Php Config : enable XDEBUG

; XDEBUG Extension
[xdebug]

//add below
; XDEBUG Extension
[xdebug]

2.) VS Code : install debugging PHP Debug plugin
configure PHP intellisense on user level: File } Preferences } Settings

3.) Debug php

?php
$message = "Hello, world";
$xdebugBreak = xdebug_break();
echo $message;
?

//Ref
Рекомендации по теме
Комментарии
Автор

Wow i love this!!! It could help you to use a site such as 'promosm'.

nicolhenzey