How do I turn off PHP Notices?
Notice: Constant DIR_FS_CATALOG already defined
I've already commented out display_errors
in php.ini
, but is not working.
How do I make PHP to not output such things to browsers?
UPDATE
I put display_errors = O开发者_Python百科ff
there but it's still reporting such notices,
Is this an issue with PHP 5.3?
Reporting numerous Call Stack too..
You can disable notices by setting error reporting level to E_ALL & ~E_NOTICE;
using either error_reporting
ini setting or the error_reporting()
function.
However, notices are annoying (I can partly sympathize) but they serve a purpose. You shouldn't be defining a constant twice, the second time won't work and the constant will remain unchanged!
For the command line php, set
error_reporting = E_ALL & ~E_NOTICE
in /etc/php5/cli/php.ini
command php
execution then ommits the notices.
Used This Line In Your Code
error_reporting(E_ALL ^ E_NOTICE);
I think its helf full to you.
I prefer to not set the error_reporting
inside my code. But in one case, a legacy product, there are so many notices, that they must be hidden.
So I used following snippet to set the serverside configured value for error_reporting
but subtract the E_NOTICE
s.
error_reporting(error_reporting() & ~E_NOTICE);
Now the error reporting setting can further be configured in php.ini
or .htaccess
. Only notices will always be disabled.
You are looking for:
php -d error_reporting="E_ERROR | E_WARNING | E_PARSE"
I found this trick out recently. Whack an @ at the start of a line that may produce an warning/error.
As if by magic, they dissapear.
For PHP code:
<?php
error_reporting(E_ALL & ~E_NOTICE);
For php.ini
config:
error_reporting = E_ALL & ~E_NOTICE
You can set ini_set('display_errors',0);
in your script or define which errors you do want to display with error_reporting()
.
error_reporting(E_ERROR); worked for me.
by not causing the errors:
defined('DIR_FS_CATALOG') || define('DIR_FS_CATALOG', 'whatever');
If you really have to, then change error reporting using error_reporting() to E_ALL^E_NOTICE.
Use phpinfo() and search for Configuration File (php.ini) Path
to see which config file path for php is used. PHP can have multiple config files depending on environment it's running. Usually, for console it's:
/etc/php5/cli/php.ini
and for php run by apache it's:
/etc/php5/apache2/php.ini
And then set error_reporting
the way you need it:
http://www.phpknowhow.com/configuration/php-ini-error-settings/ http://www.zootemplate.com/news-updates/how-to-disable-notice-and-warning-in-phpini-file
As mentioned by some and if you are the code author, you should correct all those errors, notices, etc. because it will cause more problems for you long terms than not fixing them (especially when you upgrade your OS). For your server, you should have errors displayed in your logs only, not the client's screen.
So to avoid the errors in your browser you use the display_errors
flag as you already found:
display_errors = Off
Now the real problem is when you are running someone else code. In that case, modifying the code is likely to get overwritten each time you upgrade that code. It makes it tedious to maintain that code.
In my case, I am running PHP with crontab
to have the wp-cron.php
script running once in a while. I was getting errors sent to my emails, which becomes tedious when you get one email every 10 minutes! In that case, though, the Wordpress system has a configuration file includes a WP_DEBUG
and they call the error_reporting()
function so trying to change the error_reporting
variable on the command line won't work. Instead you have to edit the wp-config.php
file in the root folder and make sure that the WP_DEBUG
is set to false
. Otherwise you will get all those warnings and notices all the time.
If you are running from the command line, you can do this:
php -d display_errors="0" script.php 2>/dev/null
You HAVE to include -d display_errors="0" as well as the redirection of stderr to null, weird
You can check if the constant's already defined using:
<?php
if (!defined('MYCONST'))
define('MYCONST', 'Weeha!');
?>
I believe commenting out display_errors in php.ini won't work because the default is On. You must set it to 'Off' instead.
Don't forget to restart Apache to apply configuration changes.
Also note that while you can set display_errors at runtime, changing it here does not affect FATAL errors.
As noted by others, ideally during development you should run with error_reporting at the highest level possible and display_errors enabled. While annoying when you first start out, these errors, warnings, notices and strict coding advice all add up and enable you to becoem a better coder.
Double defined constants
To fix the specific error here you can check if a constant is already defined before defining it:
if ( ! defined( 'DIR_FS_CATALOG' ) )
define( 'DIR_FS_CATALOG', 'something...' );
I'd personally start with a search in the codebase for the constant DIR_FS_CATALOG
, then replace the double definition with this.
Hiding PHP notices inline, case-by-case
PHP provides the @
error control operator, which you can use to ignore specific functions that cause notices or warnings.
Using this you can ignore/disable notices and warnings on a case-by-case basis in your code, which can be useful for situations where an error or notice is intentional, planned, or just downright annoying and not possible to solve at the source. Place an @
before the function or var that's causing a notice and it will be ignored.
Here's an example:
// Intentional file error
$missing_file = @file( 'non_existent_file' );
More on this can be found in PHP's Error Control Operators docs.
Set the display_errors=Off and restart xampp server
精彩评论