I am new to php and trying to run three functions in parallel. I have a code similar to the following:
Call function1(…….); //all these function are located in separate host server
Call function2(…….);
Call function3(…….);
All the above functions will be running for 5 min or more. Therefore, I really need to call them in parallel, if not my program will run for 15 min or more. any help would be greatly appreciated.