Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam 200-710 topic 2 question 5 discussion

Actual exam question from Zend's 200-710
Question #: 5
Topic #: 2
[All 200-710 Questions]

True or false: you can catch fatal errors (e.g., parse errors, out of memory errors, compilation errors) in PHP 7 using try/catch.

  • A. True
  • B. False
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
[Removed]
3 years, 9 months ago
in PHP 7.x and 8.x, now it's possible to catch Fatar errors.. So the answer should be "True". Example : try { someNoneExistentFunction(); } catch (Error $e) { echo "There is an Error caught here: " . $e->getMessage(); } Output for 7.x There is an Error caught here: Call to undefined function someNoneExistentFunction() Output for 5.x : Fatal error: Call to undefined function someNoneExistentFunction()
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...