onewaylife Posted March 23, 2007 Share Posted March 23, 2007 Last week i have given my first interview for PHP developer. Its a good experience for me to proceed further. In that I have been asked How can we increase the execution time ? I told them we can increase the limit in the php.ini file then again they told me how we can do in the code?? I don't have any idea about this can any body tell me the answer ...... best with example ... I searched in google but fail to get the exact answer.. regards onewaylife Link to comment https://forums.phpfreaks.com/topic/43943-how-to-increase-the-execution-time/ Share on other sites More sharing options...
Tyche Posted March 23, 2007 Share Posted March 23, 2007 You can use set_time_limit($execution_time_in_seconds); which overrides the max_execution_time setting in php.ini However if you are running in safe mode this will not work - under those circumstances you have to change the max_execution_time value in php.ini Link to comment https://forums.phpfreaks.com/topic/43943-how-to-increase-the-execution-time/#findComment-213368 Share on other sites More sharing options...
onewaylife Posted March 23, 2007 Author Share Posted March 23, 2007 dear Tyche but when we set the set_time_limit() function these will increase the execution time for the whole page or but they ask for a chunk of code in a page. pls correct me if i wrong .... regards onewaylife Link to comment https://forums.phpfreaks.com/topic/43943-how-to-increase-the-execution-time/#findComment-213372 Share on other sites More sharing options...
per1os Posted March 23, 2007 Share Posted March 23, 2007 set_time_limit($newtimeinseconds); // expand time for this function. runFunction(); set_time_limit($timeoldseconds); //reset timelimit to old time Link to comment https://forums.phpfreaks.com/topic/43943-how-to-increase-the-execution-time/#findComment-213464 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.