A simple python server is similar to SimpleHTTPServer, but with PHP support?

I use python -m SimpleHTTPServer when I want to run my web application locally, quickly and without much trouble. However, SimpleHTTPServer does not have PHP support (or even MySQL support).

Is there something similar that I can do (preferably, but not necessarily do with Python) to quickly launch a PHP server for testing?

+1
python php
Mar 28 '12 at 3:20
source share
1 answer

WPHP allows you to run PHP in a WSGI container, of which several are standalone.

+1
Mar 28 '12 at 3:24
source



All Articles