PHP 中的 PHP 网络服务器?
即用 PHP 应用程序替换 Apache,当发送 .php 文件的 http 请求时,该应用程序会发回 html 文件?
这有多实用?
i.e to replace Apache with a PHP application that sent back html files when http requests for .php files are sent?
How practical is this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
除了 Nanoweb 之外,还有一个标准的 PEAR 组件来构建带有内置 Web 服务器的独立应用程序:
http://pear.php.net/package/HTTP_Server
同样,即将发布的 PHP 5.4 版本很可能包括一个内部迷你网络服务器,有助于简单的文件服务。 https://wiki.php.net/rfc/builtinwebserver
Apart from Nanoweb, there is also a standard PEAR component to build standalone applications with a built-in webserver:
http://pear.php.net/package/HTTP_Server
Likewise the upcoming PHP 5.4 release is likely to include an internal mini webserver which facilitates simple file serving. https://wiki.php.net/rfc/builtinwebserver
仅供参考,PHP 5.4 刚刚发布,带有内置网络服务器。现在您可以使用非常简单的命令来运行本地服务器,例如 -
您将看到这样的请求和响应 -
Just FYI, PHP 5.4 just released with in-built webserver. Now you can run a local server with very simple commands like -
And you'll see the requests and responses like this -
它已经完成了,但如果你想知道它有多实用,那么我建议你安装并使用 Apache bench 进行测试以查看结果:
http://nanoweb.si.kz/
It's already been done but if you want to know how practical it is, then i suggest you install and test with Apache bench to see the results:
http://nanoweb.si.kz/