What's the best way to go about running jobs in a foreach in parallel in PHP? Is there a best practice for this? Thanks
The answer is simple: Parallel processing as a language feature isn't supported by php
php doesn't support threading. The most it offers is forking.