1. 程式人生 > >Maximum execution time of 30 seconds exceeded解決辦法

Maximum execution time of 30 seconds exceeded解決辦法

今天我在採用 "基於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的話,就是永不過期