header("Content-type: text/html; charset=utf-8"); set_time_limit(0); //禁用错误报告 error_reporting(0); //报告运行时错误 error_reporting(E_ERROR | E_WARNING | E_PARSE); //报告所有错误 error_reporting(E_ALL); //重定向浏览器 header("Location: http://www.paidad.cn"); //确保重定向后,后续代码不会被执行 exit;