Okay I have 50 php scripts each of which will take 20 days to finish I want to write a PHP script to run these 50 scripts simultaneously I did use exec() function in my script but the problem is it runs first script and wait until it is finished before executing the next script. I want to run all of them in parallel.Is there any way to do that? Thanks
3 Answers
if have to use only php, more "php'iish" way to do this is Robo (https://robo.li) it is used with codeception, for example.