Every once in a while I need to process a HUGE file. Though PHP probably isn't the most efficient way of processing the file, I'll usually use PHP because it makes coding the processing script much faster. To prevent the script from timing out, I need to increase the execution time of the specific processing script. Here's how I do it.
<?php /* Online PHP Examples with Source Code website: http://4evertutorials.blogspot.in/ */ ini_set('max_execution_time', 300); //300 seconds = 5 minutes set_time_limit(0);//no limit ?>
0 comments:
Post a Comment