SyntaxFix
Write A Post
Hire A Developer
Questions
You can also use PHP's error_reporting();
error_reporting();
// Disable it all for current call error_reporting(0);
If you want to ignore errors from one function only, you can prepend a @ symbol.
@
@any_function(); // Errors are ignored