Valhalla Legends Archive

Programming => Web Development => Topic started by: Mephisto on March 06, 2006, 06:46 PM

Title: PHP Question
Post by: Mephisto on March 06, 2006, 06:46 PM
Is there a way to disable PHP from outputting warnings?
Title: Re: PHP Question
Post by: Warrior on March 06, 2006, 07:00 PM
error_reporting(E_ALL ^ E_WARNING); (iirc)

This may be helpful too (http://us2.php.net/manual/en/function.error-reporting.php)
Title: Re: PHP Question
Post by: rabbit on March 07, 2006, 09:28 PM
Or, if you don't care about ANY verbose:
error_reporting(E_NONE);
Title: Re: PHP Question
Post by: warz on July 24, 2006, 10:13 PM
Sorry to bump this post, but it may be helpful to note that if you only want to disable warning or error reporting for a single function call, prefix the call with an @.

Ex: @setcookie