Maximum execution time of 30 seconds exceeded解决办法

沃驰
2023-12-01

今天我在采用 "基于ThinkPHP5 使用QueryList爬取 并存入mysql数据库" 时   做了一个休眠处理 是当几秒后才执行

出现了  Maximum execution time of 30 seconds exceeded

这个提示: Maximum execution time of 30 seconds exceeded 错误,这个提示的意思就是告诉我们: 网页执行时间超过了30秒。

解决方法(1)  修改php.ini文件

max_execution_time = 30; Maximum execution time of each script, in seconds
把它设置成需要的值就可以了。如果设置成0的话,就是永不过期。

解决方法(2)  修改php执行文件

<?

set_time_limit(0);

?>

max_execution_time = 30; Maximum execution time of each script, in seconds

把它设置成需要的值就可以了。如果设置成0的话,就是永不过期

 

基于ThinkPHP5 使用QueryList爬取 并存入mysql数据库  参考地址:https://www.kancloud.cn/he_he/thinkphp5/804186
 

 类似资料: