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 are the three parts of an http request?
Which cryptographic extension provide generation and verification of digital signatures?
How to redirect https to http url through .htaccess?
Why do we need session?
What is csrf token in php?
Is php a strongly typed language?
What are the __construct() and __destruct() methods in a php class?
Tell me what is the difference between unset() and unlink()?
Tell me how is it possible to remove escape characters from a string?
What is "print" in php?
Does wordpress run on php 7?
Is facebook still in php?
How to get length of an array in PHP?
how to use http headers inside php? Write the statement through which it can be added?
What is purpose of @ in Php?