PHP开启错误信息输出

为了调试代码,需要临时开启错误信息显示,只需在php文件中加入下面两行代码:

error_reporting(E_ALL);
ini_set('display_errors','On');

发布于 2021-05-05
所属分类:PHP相关