Show the two ways in which Warnings can be suppressed in PHP?
1) Stop an individual function call from producing an error message put the @ warning suppression Operator front of its name.
2) Disable these warnings globally by using the error_reporting( ) function to see the PHP error level to zero:
error_reporting(0)