Answers for "php display only warning and notice"

PHP
0

php not display notice

// Report all errors except E_NOTICE   
error_reporting(E_ALL ^ E_NOTICE);
Posted by: Guest on October-22-2020

Browse Popular Code Answers by Language