How can we increase the execution time of a PHP script?
Answer Posted / devasundaram
Three ways we can solve this.
1) set_time_limit() function
2) ini_set() function
3) Modifying `max_execution_time' value in PHP
configuration(php.ini) file
1 and 2 are using for temporarily purpose. 3 is for permanent.
| Is This Answer Correct ? | 66 Yes | 9 No |
Post New Answer View All Answers
What is use of preg_replace in php?
What is cURL in PHP?
What is warning – “cannot modify header information – headers already sent”?
What does the function get_magic_quotes_gpc() means?
Is php open source?
What is the current stable version of php?
Write a program using while loop?
How to redirect a url from http to https in .htaccess?
Difference between array_combine and array_merge?
Are php short tags acceptable to use?
How to uploaded files to a table?
Why would we use === instead of ==?
Explain the installation of PHP on UNIX systems?
Explain the difference between require() and require_once()?
How do I expire a php session after 30 minutes?