设置输出编码格式 header 重定向 执行时间 set_time_limit 错误 报告 级别 error_reporting

 

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;

 

posted @ 2016-07-26 12:00  WilliamShaw  阅读(264)  评论(0编辑  收藏  举报