InterviewSolution
Saved Bookmarks
| 1. |
Which of the following directive determines the maximum amount of time that a PHP script will spend attempting to parse input before registering a fatal error?(a) max_take_time(b) max_intake_time(c) max_input_time(d) max_parse_timeThis question was addressed to me during an online exam.My query is from Uploading Files with PHP in portion File and Session Handling in PHP of PHP |
|
Answer» RIGHT option is (C) max_input_time For explanation: This is relevant because PARTICULARLY large files can take some time to UPLOAD, eclipsing the time SET by this directive. |
|