可能重复:
How can one use multi threading in php applications
Does PHP have threading?
Threads in PHP
是否可以启动分离的线程,您可以在给定时间运行多个进程,就像在PHP中的c#和java等中一样?
如果是,可以怎样做?
如果不是,为什么不呢?也许这对网络环境来说不是一个好主意?
答案 0 :(得分:1)
PHP不支持线程,但您可以创建子进程,它们将以与线程类似的方式独立运行。有关详细信息,请参阅PHP手册:http://uk3.php.net/pcntl_fork
有人也写过你可以使用的their own thread class。它使用pcntl_fork
方法并将其包装起来,使其类似于java.lang.Thread实现。