for example I do have 5 PHP functions on a page which execute when loading. each functions has its own processing time and some of them take more time sometimes to complete the task. hence the total loading time of the said page is slow.
my question is how do I control execution time for each script and set time limit for the same. I am aware that there is an in built function in PHP called set_time_limit(); but it gives fatal error if time is beyond the maximum limit…
From what your question says, I’m assuming that you have 5 functions in a single PHP file (script), executing, and if one of them executes for too long, it should be skipped.
The only way you can skip functions is to poll the time every once in a while.
Note that the function will only return at points where it checks if the time’s up, and you have to manually place the points where you check if the time’s up. This check does have some overhead, so try not to place it everywhere.
Please comment if I misinterpreted your question.