php - ปัญหาเกี่ยวกับไฟล์ดาวน์โหลดบนอุปกรณ์พกพา
one text
ทำไมเมื่อฉันพยายามบันทึกไฟล์ xlsx จากไซต์มือถือ มันกลับเป็น filename.xlsx.html แต่บนเดสก์ท็อปกลับใช้งานได้ดี
$xlsSave = new Xls($spreadsheet);
header(\'ContentType:application/vnd.openxmlformatsofficedocument.spreadsheetml.sheet\');
header(\'Content-Disposition: attachment; filename="\' . $filename . \'.xlsx"\');
$xlsSave->save(\'php://output\');
รหัส>
Source