Reputation: 4896
Will IIS express run PHP in visual studio? If so, will you be able to debug php in Visual Studio?
Upvotes: 4
Views: 1529
Reputation: 78104
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.
Upvotes: 6
Reputation: 70307
Yes.
http://ruslany.net/2010/07/install-php-applications-with-webmatrix/
Upvotes: 3