I noticed that in Visual Studio Code there is a menu item "Start without debugging" in the menu "Debug". When I open the PHP file, I expected it to run the PHP file through the PHP executable and give me the result. Instead, when I click "Start without debugging," the "User Settings" page appears. Why does the user settings page appear? It is not clear why this page is presented to me. Does he want me to tune something? How can I make it just run the PHP file that I open through the PHP executable? Is it possible?
I noticed that the default setting has the property "php.validate.executablePath" , which is set to null . I tried to override this parameter in user settings, pointing it to the path of my PHP executable as follows:
{ "php.validate.executablePath": "/usr/bin/php" }
But that didn’t solve anything. The User Settings page is still displayed when I click on "Start without debugging."
php configuration visual-studio-code
Kodos johnson
source share