php - Fatal error: Maximum execution time of 30 seconds exceeded -
i downloading json file online source , and when runs through loop getting error:
fatal error: maximum execution time of 30 seconds exceeded in c:\wamp\www\temp\fetch.php on line 24
your loop might endless. if not, extend maximum execution time this:
ini_set('max_execution_time', 300); //300 seconds = 5 minutes
Comments
Post a Comment