vote up 1 vote down star

I am getting expected notices and warnings, and would like to turn them off on my php file. errors are:

Warning: fsockopen()

and notices are:

Notice: A non well formed numeric value encountered in

I am planning to use cron for this php script, and do not want to get any errors or notices logged anywhere... ie cpanel error log etc...

Thanks

flag

1  
If you don't want errors e-mailed to you by cron, you can point its output at /dev/null. Still, errors are generally there for a reason - you'd presumably like to know when your cron script breaks! Try handling the errors gracefully. – ceejayoz Oct 29 at 18:43

3 Answers

vote up 1 vote down check

When you are sure your script is perfectly working, you can get rid of Warning and notices like this: Put this line at the beginning of your php script:

error_reporting(E_ERROR);

Before that, when working on your script, i would advise you to properly debug your script so that all notice or warning disappear one by one. So you should first set it as verbose as possible with:

error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
link|flag
Don't do this. Suppressing all errors is a horrid idea. – ceejayoz Oct 29 at 18:41
you're speaking as if reciting a mantra. In this specific use case, that's exactly what the user wants. If he'd asked for a logging system, he'd ask for it. – pixeline Oct 29 at 19:31
I agree with both ceejayoz and pixeline. However, error_reporting(0) should only be set as a security measure on production environments so critical information is not mistakenly leaked to malicious users. Using error_reporting(0) to 'ignore errors' carries a high risk of leading to bad things. I know it's what the author asked for, but I would suggest against it. – Mike B Oct 29 at 19:53
ok, i'll amend so that it suppresses warning and notices. that should be enough. Let's agree that errors should be reported, but notices and warning don't need to, once his script is properly working. – pixeline Oct 30 at 10:41
vote up 1 vote down

you can set the type of error reporting you need in php.ini or by using error_reporting() function on top of ur script.

link|flag
vote up 2 vote down

Prepend functions with the '@' symbol to suppress certain errors, As opposed to turning off ALL error reporting.

More Info: http://php.net/manual/en/language.operators.errorcontrol.php

PHP supports one error control operator: the at sign (@). When prepended to an expression in PHP, any error messages that might be generated by that expression will be ignored.

@fsockopen();

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.