Reputation: 13224
Im using xamp for local php server. Is it possible to end execution of some really long script without restarting xamp php service?
Upvotes: 0
Views: 1896
Reputation:
To set maximum execution time of a specific PHP page, use set_time_limit in your PHP page.
To set maximum execution time of all PHP pages at once, use max_execution_time in php.ini file.
Upvotes: 0