Interviewer And Interviewee Guide

PHP Community Marketing Expert Interview Question:

Explain how can we increase the execution time of a PHP script?

Submitted by: Muhammad
☛ Default time allowed for the PHP scripts to execute is 30 secs mentioned in the php.ini file. The function used is set_time_limit(int sec). If the value passed is ‘0', it takes unlimited time. It should be noted that if the default timer is set to 30 sec, and 20 sec is specified in set_time_limit(), the script will run for 45 seconds.
☛ This time can be increased by modifying the max_execution_time in secs. The time must be changed keeping the environment of the server. This is because modifying the execution time will affect all the sites hosted by the server.
☛ The script execution time can be increased by
☛ Using sleep() function in PHP script
☛ Using set_time_limit() function
☛ The default limit is 30 seconds. The time limit can be set to zero to impose no time limit to pause.
Submitted by: Muhammad

Read Online PHP Community Marketing Expert Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.