我已经尝试了一切来更改max_execution_time
php 爬虫脚本,以便它可以运行无限的时间。
我已将 php.ini 文件设置更改max_execution_time
为0
or100000000
但没有更改
我也尝试通过使用从 php 脚本本身设置它ini_set('max_execution_time', 0);
所有 php 脚本都抛出相同的错误Fatal error: Maximum execution time of 3000 seconds exceeded
,我可能会丢失什么以及如何确保没有最大执行时间限制?
脚本
<?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