max_execution_time
phpクローラースクリプトを変更して、無限の時間を実行できるようにするために、あらゆることを試みました。
php.iniファイルの設定max_execution_time
を0
またはに変更しました100000000
が、変更はありません
また、phpスクリプト自体から設定してみました。ini_set('max_execution_time', 0);
すべてのphpスクリプトは同じエラーをスローしますがFatal error: Maximum execution time of 3000 seconds exceeded
、何が欠落している可能性があり、最大実行時間制限がないことを確認するにはどうすればよいですか?
phpスクリプト
<?php
ini_set('MAX_EXECUTION_TIME', -1);
error_reporting(E_ALL); // turn on all errors, warnings and notices for easier debugging
//ini_set('max_execution_time', 123456);
ini_set('max_input_time', -1);
ini_set('memory_limit', '512M');
set_time_limit(0);
date_default_timezone_set('Europe/London');
/*code which scrapes websites*/
?>
phpinfo()
max_execution_time 0 0
max_input_time -1 -1