PHP typically uses a 'share-nothing' architecture, where each web request is handled in one separate thread and there is no communication between threads. So we don't hand tasks off directly to other threads. What we usually do instead is use add a message to a queue outside the process when want work done asynchronously. A separate PHP process, often on a separate server picks up the message and does the work.
↧