Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Will IIS express run php in Visual Studio?

Will IIS express run PHP in visual studio? If so, will you be able to debug php in Visual Studio?

like image 698
Kenneth J Avatar asked Jan 22 '23 18:01

Kenneth J


2 Answers

Yes, IIS Express will run PHP applications.

Visual Studio can edit PHP files (and any other text files), but IIS Express does not add any additional integrations between PHP and Visual Studio, debugging included. You could theoretically create a project in Visual Studio of PHP files and set it to run from IIS Express, but there would be no debugging available.

The WebMatrix IDE lets you edit PHP files (and any other text files), but does not allow for debugging PHP applications.

like image 85
John Sheehan Avatar answered Jan 27 '23 03:01

John Sheehan


Yes.

http://ruslany.net/2010/07/install-php-applications-with-webmatrix/

like image 36
Jonathan Allen Avatar answered Jan 27 '23 02:01

Jonathan Allen