Reputation: 11682
I'm searching for a list of possible "types" of errors in error_get_last()
For instance the method returns this array:
Array
(
[type] => 1
[message] => Allowed memory size of 268435456 bytes exhausted (tried to allocate 72 bytes)
[file] => /dir/file.php
[line] => 123
)
So I assume "1" is a "Fatal Error"
What are the others?
Upvotes: 1
Views: 2207