Let's say i have two functions in functions.php in Wordpress.
function1(){
// it takes 2 minutes to finish whatever it does
}
function2(){
// it takes 3 minutes to finish whatever it does
}
function1();
function2();
My question is how are the functions executed?
1.First is executed function1 and when it's finished starts the execution of function2, so the final time will be 5 minutes?
2.The execution for both starts in the same time and the final time will be 3 minutes?
Hope you'll understang my problem, thanks.