Maison >développement back-end >tutoriel php >PHP怎么关闭notice级别的异常提示

PHP怎么关闭notice级别的异常提示

WBOY
WBOYoriginal
2016-06-13 12:23:04876parcourir

PHP如何关闭notice级别的错误提示

1、在php.ini文件中改动error_reporting
改为:
error_reporting=E_ALL & ~E_NOTICE
2、如果你不能操作php.ini文件,你可以使用如下方法
在你想禁止notice错误提示的页面中加入如下代码:
/* Report all errors except E_NOTICE */
error_reporting(E_ALL^E_NOTICE);

版权声明:本文为博主原创文章,未经博主允许不得转载。

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn