Prevent timeout during large request in PHP

后端 未结 3 672
孤独总比滥情好
孤独总比滥情好 2021-01-03 22:52

I\'m making a large request to the brightcove servers to make a batch change of metadata in my videos. It seems like it only made it through 1000 iterations and then stopped

3条回答
  •  渐次进展
    2021-01-03 23:10

    Try the set_time_limit() function. Calling set_time_limit(0) will remove any time limits for execution of the script.

提交回复
热议问题