Welcome to the Tweaking4All community forums!
When participating, please keep the Forum Rules in mind!
Topics for particular software or systems: Start your topic link with the name of the application or system.
For example “MacOS X – Your question“, or “MS Word – Your Tip or Trick“.
Please note that switching to another language when reading a post will not bring you to the same post, in Dutch, as there is no translation for that post!
[Solved] PHP - Temporary suppress Warnings
(@hans)
Famed Member Admin
Joined: 11 years ago
Posts: 2805
Topic starter
March 6, 2020 1:15 PM
Sometimes things don't quite go the way we like.
For example ... a function in PHP that throws a Warning which we'd like to suppress.
The coolest trick I have seen (besides the obvious ones) is simply by adding an "@" in front of the function that is causing the issue.
Please note: this is just to HIDE the warning.
It is better to fix the issue ... but sometimes the issue cannot be fixed right away.
How to use this:
Say you have the functions (I'm showing 2 examples)
dosomething();
$xyz = calculatesomthing();
And these function throws a warning.
To suppress the warning:
@dosomething();
$xyz = @calculatesomthing();