a) upload_tmp_dir “/tmp/phpuploads/ directory” b) upload_dir “/tmp/phpuploads/ directory” c) upload_temp_dir “/tmp/phpuploads/ directory” d) upload_temp_director “/tmp/phpuploads/ directory” ...
View QuestionWhich directive sets a maximum allowable amount of memory in megabytes that a script can allow?
a) max_size b) post_max_size c) max_memory_limit d) memory_limit Answer: d Explanation: Its default value is 16M.
View QuestionWhat is the default value of the directive max_file_limit?
a) 10 files b) 15 files c) 20 files d) 25 files Answer: c Explanation: The default ...
View QuestionSince which version of PHP was the directive max_file_limit available.
a) PHP 5.2.1 b) PHP 5.2.2 c) PHP 5.2.12 d) PHP 5.2.21 Answer: c Explanation: The max_file_limit ...
View QuestionWhat is the default value of max_input_time directive?
a) 30 seconds b) 60 seconds c) 120 seconds d) 1 second Answer: b Explanation: The default ...
View QuestionWhich 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_time Answer: c Explanation: This is relevant because particularly large ...
View QuestionWhich directive determines whether PHP scripts on the server can accept file uploads?
a) file_uploads b) file_upload c) file_input d) file_intake Answer: a Explanation: With PHP, it is easy to ...
View QuestionWhich is the most powerful authentication method among the four?
a) Hard-coding a login pair directly into the script b) File-based authentication c) Data-based authentication d) PEAR’S ...
View Question
In which of the following situations does file-based authentication become inconvenient.
i) small list
ii) large number of user
iii) users are being regularly added
iv) static authentication
In which of the following situations does file-based authentication become inconvenient. i) small list ii) large number of ...
View QuestionWhich function is used to split a string into a series of substrings, with each string boundary is determined by a specific separator?
a) break() b) divide() c) explode() d) md5() Answer: c Explanation: Although they are a similar function, ...
View Question