输入banner图图片脚本导航/分类

PHP运行时强制显示出错信息

  1. error_reporting(E_ALL);
  2. ini_set('display_errors', '1');
  3. //将出错信息输出到一个文本文件
  4. ini_set('error_log', dirname(__FILE__) . '/error_log.txt');

PHP