php timeout - set_time_limit(0); - don't work

前端 未结 5 1363
感动是毒
感动是毒 2020-12-15 04:25

I\'m having a problem with my PHP file that takes more than 30 seconds to execute.

After searching, I added set_time_limit(0); at the start of the code,

5条回答
  •  佛祖请我去吃肉
    2020-12-15 04:28

    Check the php.ini

    ini_set('max_execution_time', 300); //300 seconds = 5 minutes
    
    ini_set('max_execution_time', 0); //0=NOLIMIT
    

提交回复
热议问题