我想在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);*/
和......