出力をエコーする前に、スクリプトにヘッダーを追加してみてください
header('Content-Description: File Transfer');
header("Content-type: application/octet-stream");
header("Content-disposition: attachment; filename= ".$file."");
echo base64_decode($file);
出力をエコーする前に、スクリプトにヘッダーを追加してみてください
header('Content-Description: File Transfer');
header("Content-type: application/octet-stream");
header("Content-disposition: attachment; filename= ".$file."");
echo base64_decode($file);