Asked 2025 years ago
30 Nov -0001
Views 354
Fleta

Fleta posted

How do I turn off PHP error reporting ?

How do I turn off PHP error reporting ?
dilip

dilip
answered Jul 19 '21 00:00

1. make error_reporting is off at php.ini at your system
find the php.ini in your system
and find for the word error_reporting and set it to 0
2. or do it by error_reporting function at run time
disable the error reporting , use error_reporting() function like below


error_reporting(0);

Post Answer