There are a TON of answers on SO about disabling PHP Strict Standards messages, but what I really want to know is, are "Strict standards" messages "Errors"?
Maybe I'm old school, but I've always considered them errors to be fixed -- to me, properly coded PHP scripts shouldn't generate any errors, period. But I'm seeing so many answers saying "they're not errors" and just "turn off error reporting"... but why would you have to tweak error reporting settings if they're not errors?
Bottom line: are "strict standards" messages "errors" or not? Is there a definitive answer somewhere?