Sunday, January 11, 2015

How can i remove notice from my php pages?


We can remove notice using  error_reporting method.

error_reporting(E_PARSE);

Show all errors, except for notices

error_reporting = E_ALL & ~E_NOTICE


No comments:

Post a Comment