php error reporting set up usually to be E_ALL & ~E_NOTICE.
When we do the programming, should we make the codes works for "E_ALL & ~E_NOTICE or E_ALL"?
Or should we be more strict?
make the codes to works for "E_ALL"
Of course, in theory, more strict like "E_ALL" is better, but many systems make it work with "E_ALL & ~E_NOTICE or E_ALL"?
What is the best balance point in your opinions?
Thanks!