PHP 5 是否有 SAPI 模块来支持 thttpd Web 服务器?
PHP 5 是否有 SAPI 模块来支持 thttpd Web 服务器? 奇怪的是,PHP 5.2.6 源代码中包含的内容是针对 PHP 4.x 的。
谢谢, 肯尼思
Is there a SAPI module for PHP 5 for supporting the thttpd web server?
Oddly, the one included on PHP 5.2.6 source is for PHP 4.x.
Thanks,
Kenneth
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PHP 5 附带的 thttpd SAPI 可以正常工作。 忽略其中显示“PHP 4”的自述文件。
但是,请了解 thttpd 的 PHP 是单线程的。 当 PHP 执行时,所有其他请求都将停止。 对于低流量站点或嵌入式应用程序来说,这可能是可以接受的。 如果没有,我建议尝试 nginx,这是另一个轻量级 Web 服务器,它通过 FastCGI 在单独的进程中运行 PHP。
The thttpd SAPI that ships with PHP 5 works. Ignore the README where it says "PHP 4".
However, understand that PHP for thttpd is single-threaded. All other requests will stall while PHP is executing. This is might be acceptable for a low traffic site or embedded application. If not, I recommend trying nginx, another lightweight web server that runs PHP in a separate process via FastCGI.