使用 PHP 是否需要学习信号量和线程?

发布于 2024-11-04 04:56:55 字数 29 浏览 0 评论 0原文

是否有必要学习信号量和线程才能使用 PHP?

Is it necessary to learn semaphores and threading in order to work with PHP?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一抹微笑 2024-11-11 04:56:55

不。事实上,PHP 中的线程确实很麻烦,并且不建议用于 Web 脚本编写,因为大多数 Web 服务器不支持它(带有 mod_php 的 Apache 无法以可靠的方式分叉 PHP 线程)。

No. In fact, threading in PHP is a real hassle and not recommended for web scripting anyway since most web servers don't support it (Apache with mod_php cannot fork PHP threads in a reliable manner).

梦太阳 2024-11-11 04:56:55

除非您要在 PHP 中执行 CLI 脚本(这是一项非常流行的任务),否则不会。

如果您要编写从命令行(而不是通过网络服务器)运行的 PHP 脚本,那么这些脚本会非常方便。您可能还想看看 fork() 甚至可能 socket_select() 如果您遇到更复杂的事情。

您可以通过 CLI 做很多事情,多线程和分叉肯定会有很大帮助。

Unless you're going to do CLI scripts in PHP (which is a pretty popular task), then no.

If you are going to write PHP scripts that will be run from the command line (not through a webserver), these can be very handy. You might also want to take a look at fork() and maybe even socket_select() if you get into more complicated stuff.

There's a world of things you can do from the CLI, and multithreading and forking will certainly help a lot.

梦断已成空 2024-11-11 04:56:55

不,当然不适用于常见的网络内容。

No, certainly not for the usual web stuff.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文