Vấn đề:
- Viết action cho phép client tải file về. Nhưng nội dung file cứ bị append ký tự xuống dòng ở đầu => file không mở được sau khi download về.
Lý do:
- Ở một file nào đó trước khi thực thi action đã echo ra dấu xuống dòng hoặc xuống dòng rồi mới
Giải quyết:
- Xem ví dụ mẫu trong PHP Manual
$file = 'monkey.gif';
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}?>