我需要一些关于如何解决我提交数据后收到的此错误的小帮助。数据提交成功但我每次提交数据时都会看到此错误"在"
之下Array
(
[0] => ../upload/tmp/eb56163c635cf89918baa7ed93b9adee_3.jpg
[1] => ../upload/tmp/eb56163c635cf89918baa7ed93b9adee_3.jpg.jpg
[2] => 91
[3] => 76
[4] => 92
[5] => 140
[6] => 91
[7] => 76
)
Array
(
[image] => Resource id #203
[type] => 2
[width] => 500
[height] => 450
)
Warning: Cannot modify header information - headers already sent by (output started at /home/mysite/admin/lib/debug.php:25) in /home/mysite/admin/lib/sqladmin.php on line 636
/home/mysite/admin/lib/debug.php 文件如下:
<?php
// dependencies
/**
* description
*
* @param
*
* @return
*
* @access
*/
function PrintR($array , $die = false) {
echo "<table><tr><td><pre style=\"background-color:white\">";
print_r($array);
echo "</pre></td></tr></table>";
if ($die)
die();
}
/**
* description
*
* @param
*
* @return
*
* @access
*/
function Debug($array , $die = false) {
if ($_SERVER["REMOTE_ADDR"] != "127.0.0.1") {
// return "";
}
PrintR($array , $die);
}
?>
为了方便起见:第636行/home/mysite/admin/lib/sqladmin.php
header("Location:" . $this->templates["generic_form"]->blocks["Temp"]->Replace(array_merge($_GET,$_POST)));
exit;
答案 0 :(得分:0)
标题函数在运行之前不需要输出任何内容。通过像你那样打印数组或者回显debug.php文件中的错误(这里似乎是这种情况),这意味着正在写入输出,这将为标题创建冲突。尝试删除它。