Removing depreciated messages in PHP euop Posted on November 2, 2014 Posted in Blogs, General PHP To remove depreciated messages form displays you can use the ~E_DEPRECATED value in the error_reporting function something like the following : error_reporting(E_ALL & ~E_DEPRECATED & ~E_NOTICE);