Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试打印存储在会话变量数组中的值列表,而我得到的只是“标头已发送...”错误。在错误页面上,我可以看到阵列工作,但显然它不会从那里继续。错误提到的行是这样的:
$uploadedfiles = print_r($_SESSION['uploadedfiles']);
声明数组并将值添加到其中:
array_push($_SESSION['uploadedfiles'], $file_name);
有什么想法吗?
非常感谢。
print_r()会自动打印到屏幕上。您需要将第二个参数设置true为实际将其捕获到变量中。
print_r()
true
$uploadedfiles = print_r($_SESSION['uploadedfiles'], true);