ファイルのダウンロードですが、
Netscape 7/Firefox ではファイル名が化けます ( IE は OK )。

<?php
$filename = '日本語';
header("Accept-Ranges: none");
header("Content-Type: application/x-pdf");
header("Content-Disposition: attachment; filename={$filename}.pdf");
mb_http_output('pass');
echo "test";
?>

コードをどう変えればいいの?