InterviewSolution
Saved Bookmarks
| 1. |
Which version introduced the function error_get_last()?(a) PHP 4(b) PHP 5(c) PHP 5.2(d) PHP 5.3I have been asked this question in an internship interview.I need to ask this question from Error Handling topic in division Error Handling and Exception Handling in PHP of PHP |
|
Answer» CORRECT answer is (c) PHP 5.2 To explain I would say: This function returns an associative array CONSISTING of the type, message, FILE, and line of the last occurring error. |
|