How to disable showing e_notices in xampp.Which coding part I have to change in following code.I want to disable e notices only not all errors.

error_reporting
;Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
;Development Value: E_ALL
;Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT

Thanks

Member Avatar for diafol

Turning off errors is not the smartest move. If there are any, you should fix them rather than hide them. However, have a look here:

http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-reporting

and

http://php.net/manual/en/function.error-reporting.php

You'd be best to make changes to the ini file instead of setting levels and options in a script. If you're using XAMPP (local), then be aware that the settings on any remote server may be different.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.