Rumah > Artikel > pembangunan bahagian belakang > php如何关闭deprecated
php关闭deprecated的方法:首先更改【php.ini】相关文件,代码为【error_reporting=E_ALL&~E_NOTICE】;然后加入相关代码禁止notice错误提示;最后重启apache即可。
php关闭deprecated的方法:
1.在php.ini文件中改动error_reporting
改为:
error_reporting=E_ALL&~E_NOTICE
如果你不能操作php.ini文件,你可以用下面的方法来实现
2.在你想禁止notice错误提示的页面中加入下面的代码
/* Report all errors except E_NOTICE */ error_reporting(E_ALL ^ E_NOTICE);
就按照这个改下 然后重启下 apache 就可以了
相关学习推荐:php编程(视频)
Atas ialah kandungan terperinci php如何关闭deprecated. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!