每当我打开页面时,我都会收到以下错误:
[04-Jul-2012 17:10:45] PHP 警告:无法修改标头信息 - 标头已由 /home/test/public_html 中的(输出开始于 /home/test/public_html/admin/header.php:39)发送/admin/edAgent.php 在第 80 行
[04-Jul-2012 17:10:55] PHP 警告:无法修改标头信息 - 标头已由 /home/test/public_html 中的(输出开始于 /home/test/public_html/admin/header.php:39)发送/admin/edAgent.php 在第 80 行
包括标题的代码片段:
编码头:
header('Content-Type: text/html; charset=utf-8');
登录重定向标头:
if(!isset($_SESSION["login"])OR $_SESSION["login"]!=1){
header('Location: login.php');
exit;
}
检查登录用户是否有编辑权限:
if($level!='4') {
header('Location: acd.php?msg=1');
exit;
}
检查 ID 是否存在:
if ($nUsers==0) {
header('Location: acd.php?msg=2');
exit;
}
检查信息是否可编辑:
if($access != '4') {
header('Location: acd.php?msg=1');
exit;
}