Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有一个功能可以在我们的应用程序中发送推送通知,我们希望在不妨碍父进程的情况下将该功能作为子进程执行。这个子函数的返回值并不重要。我们不能使用“PCNTL”函数以及 exec 或任何类型的此类函数来分叉进程(我们有最严格的要求)。我已经探索和研究了将近2个月,但没有得到满意的解决方案。任何帮助都感激不尽。(父进程不应等待子进程完成,子进程应立即开始执行。)
由于 PHP 中没有任何线程(PHP 中的线程),因此任何解决方案都必须是 fork/exec 或它们的一些抽象。