PHP turn off errors - in one file only
- by Industrial
Hi!
I am well aware about error_reporting(0); & ini_set('display_errors', "Off"); to make error messages go away.
What would be an appropriate way to do this - for a specific file or part of code only?
Surpressing errors with @'s seems like a bad idea since it apparently slows the code down...
Thanks!