download.php
} else {
$filename = NULL;
}
$err = '<div align="center">GREEK error msg</div>';
if (!$filename) {
// if variable $filename is NULL or false display the message
echo $err;
} else {
// define the path to your download folder plus assign the file name
$path = '../downloads/'.$filename;
// check that file exists and is readable
if (file_exists($path) && is_readable($path)) {
// get the file size and send the http headers
$size = filesize($path);
header('Content-Type: application/octet-stream;');
header('Content-Length: '.$size);
header('Content-Disposition: attachment; filename='.$filename);
header('Content-Transfer-Encoding: binary');
// open the file in binary read-only mode
// display the error messages if the file can´t be opened
$file = @ fopen($path, 'rb');
if ($file) {
// stream the file and exit the script when complete
fpassthru($file);
exit;
} else {
echo $err;
}
} else {
echo $err;
}
}
?>
这就是我所说的:
<a href="scripts/download.php?file=GREEKCHARS_Earth.pdf"></a>
如果文件名是英文的,下载脚本工作正常.
如果文件名为希腊语,则显示错误 msg。如果我回声$filename我会看到正确的希腊名称,所以我想在我的下载中传递了正确的名称.php。
由于我获得了带有$filename的正确名称并且我的实际文件具有相同的名称,因此脚本无法下载我的文件并给我错误消息?
它似乎无法将希腊$filename与实际文件匹配。
问题是HTTP标头可能只包含ASCII字符。这是标准,因为标头用于定义哪些内容以何种编码遵循,因此标头本身不能包含某些尚未指定的编码中的字符。
要在标头中发送非 ASCII 符号,需要根据 RFC 2231 对其进行编码。
在这里看到这个答案:如何根据 RFC 2231 在 PHP 中编码文件名?