PHP 文件中开启错误提示

只需要在php文件中加入以下两行代码:

ini_set("display_errors", "On");
error_reporting(E_ALL | E_STRICT);


你可能感兴趣的:(PHP 文件中开启错误提示)