Jump to content

How to increase the execution time ....


onewaylife

Recommended Posts

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

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

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.