I have 55 php files that I would like to run simultaneously from the command line. Right now I am running them in several CLI windows using code:
PHP 1.php
I would like to be able to call a single php file that will execute all 55 php files at once. I read about how to make the command line not wait for exit, but I can not make it work.
This thread: How to run multiple PHP scripts from the command line
offers to put and execute the command in the background at the end of the command, but with the help of CLAMP xampp it does nothing.
Any ideas were greatly appreciated.
Brian
source share