disable warnings pp code example
Example 1: python suppress warnings in function
import warnings
warnings.filterwarnings("ignore")
Example 2: turn off deprecated warnings php
error_reporting(E_ALL ^ E_DEPRECATED);
import warnings
warnings.filterwarnings("ignore")
error_reporting(E_ALL ^ E_DEPRECATED);