我创建了一个初学者程序,通过浏览器将文件从 unix box 强制下载到 windows,它没有抛出任何错误,但在浏览器上什么也不显示,只是一个空白页。
PHP版本- 5.2.13
Apache-2.0
Unix Box- HP-UX 11.11(旧版本最新是11.31)
本地PC- windows XP Prof.
Browser- IE 7,Mozilla。
以下是我的代码(此代码位于 unix box 上):
<?php
ob_start();
$file = '/opt/hpws/apache/htdocs/barn/file2';
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream;charset=utf-8');
header('Content-Disposition: attachment; filename=$file');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
readfile($file);
exit;
}
?>