in PHP by
Is it possible to extend the execution time of a PHP script?

1 Answer

0 votes
by
The use of the set_time_limit(int seconds) enables us to extend the execution time of a PHP script. The default limit is 30 seconds.
...