PHP Worker Threads
PHP is always ran in a web worker to ensure the PHP runtime doesn't slow down the user interface of the main website.
Imagine the following code:
<button onclick="for(let i=0;i<100000000;i++>) {}">Freeze the page</button>
<input type="text" />
As soon as you click that button the browser will freeze and you won't be able to type in the input. That's just how browsers work. Whether it's a for loop or a PHP server, running intensive tasks slows down the user interface.