exec($command)
işlevinin maksimum yürütme süresini ayarlamak mümkün mü?exec() için maksimum yürütme süresinin ayarlanması özellikle
Fatal error: Maximum execution time of 60 seconds exceeded in C:\xampp\htdocs\files.php on line 51
nasıl exec()
komut maksimum yürütme zamanı artırabilir: Bazen $command
yürütülmesi 1 dakika sonra durdurma ve bu hatayı sunulması çok uzun sürer?
if (allow()) {
exec($command);
if (file_exists($file)) {
//exec($makeflv);
echo '<script language="javascript" type="text/javascript">window.top.window.aviout(1);</script>';
} else {
echo $error;
}
} else {
echo $error;
}
, bu en az üç yanıtlandı kez: http://stackoverflow.com/questions/1176497/limit-execution-time-of-an-function-or-command-php, http://stackoverflow.com/questions/1928249/php-preventing-max- posta için yürütme-zaman sınırı ve http://stackoverflow.com/questions/21 47567/önlemek-php-yürütme-zaman sınırı – Gordon