//place this before any script you want to calculate time$time_start=microtime(true);
//sample scriptfor($i=0; $i<1000; $i++){
//do anything
}
$time_end=microtime(true);
$execution_time= ($time_end-$time_start);
echo'<b>Total Execution Time:</b> '.($execution_time*1000).'Milliseconds';
how to increase maximum execution time of php script
By default, the maximum execution time forPHP scripts is set to 30 seconds.If a script takes more than 30 seconds, PHP stops the script and returns an error.
You can change the script run time by changing the max_execution_time directive in the php.ini file.
When a script is called, set_time_limit function restarts the timeout counter from zero. It means, if default timer is set to 30 sec,
and20 sec is specified in functionset_time_limit(), then script will run for45 seconds.If 0sec is specified in thisfunction, script takes unlimited time.
Set Max_Execution_Time globally in php. ini
1. Locate and open your PHP build folder.2. Find the php.ini file and open it.3. Find the following line in the text configuration file – max_execution_time=30.4. Change the value 30 to the value of choice, Remember, this value is in seconds.5. Save & Close./*
I hope it will help you.
Namaste
Stay Home Stay Safe
*/
Posted by: Guest
on May-21-2020
Code answers related to "increase query execution time in php"
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems
resetting your password contact us
Check Your Email and Click on the link sent to your email