Answers for "max execution time exceeded php"

PHP
4

php time a script

//place this before any script you want to calculate time
$time_start = microtime(true); 

//sample script
for($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';
Posted by: Guest on April-28-2020
0

max execution time exceeded php

ini_set('max_execution_time', '300'); //300 seconds = 5 minutes
Posted by: Guest on August-13-2021

Code answers related to "max execution time exceeded php"

Browse Popular Code Answers by Language