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
...
Log in to ExamTopics
Sign in:
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.
[Removed]
4 years, 4 months ago