如何在PHP中下载带有UTF-8文件名的文件?

时间:2015-02-08 06:49:02

标签: php curl utf-8

我想在PHP中使用包含UTF-8文件名的下载文件,例如یک.jpg。 我测试了许多在网站上发布的解决方案但它们无法正常工作。 这是我测试的解决方案:

$file_utf8 = iconv( "iso-8859-1", "utf-8", $file );
if (file_exists($file_utf8))
{
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename='.basename($file));
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file));
    readfile($file);
    exit;
}
else
    echo($file_utf8);*/

和......

0 个答案:

没有答案