There's manage.py runserver
in Django or ruby script/server
in Ruby on Rails — those familiar with one of those frameworks should already get the idea what I'm looking for. They run tiny "standalone" web server, which is perfectly enough to debug the application locally, without any need for other software (Apache/Nginx/Lighttpd/etc).
I wonder is there any PHP implementation of such tool, or, maybe, some PHP framework has such feature? Surely, I can pack pre-built pre-configured static nginx executable, but this would not be pretty, and certainly not cross-platform. Having standalone debug webserver written in PHP itself will make the package self-contained.
I.e. I'd like to type something like php tools/runserver.php
, point browser to http://localhost:8000/
and see the site up and running, ready to debug.
My Google-fu has failed me, but I strongly suspect that there is such project already.
Source: Tips4all
Not sure if this is what you're after, though it's actually more like a Tomcat for PHP, and I think (though I'm not sure) it still requires a webserver
ReplyDeleteAlso, nanoweb is a web server written entirely in PHP
Sorry for reviving an old thread.
ReplyDeleteIf you just want to debug your application. As of PHP 5.4 there's a Built-in web server.
http://docs.php.net/manual/en/features.commandline.webserver.php
Found it: QuickPHP!
ReplyDeleteCheck these out:
Nanoweb
phpstack
MicahServer
May worth mentioning:
ReplyDeletehttps://github.com/dhotson/kelpie
https://github.com/indeyets/appserver-in-php (requires C extension)
There's also an proporsal to have server built-in into PHP CLI binary: http://wiki.php.net/rfc/builtinwebserver
(Source: http://news.ycombinator.com/item?id=2281724)