엑셀 지원하지 않는 형식
본문
관리자 > 주문내역출력 시 .xls가 아닌 txt 형식의 파일로 다운됩니다.
그리고 파일을 열면 지원하지 않는 파일 형식이라는 메세지가 뜨는데 무슨 문제인가요ㅜㅜ
include_once(G5_LIB_PATH.'/Excel/php_writeexcel/class.writeexcel_workbookbig.inc.php');
include_once(G5_LIB_PATH.'/Excel/php_writeexcel/class.writeexcel_workbook.inc.php');
include_once(G5_LIB_PATH.'/Excel/php_writeexcel/class.writeexcel_worksheet.inc.php');
header("Content-Type: application/vnd.ms-excel; charset=utf-8; name=\"{$file_name}\"");
header("Content-Disposition: attachment; filename=\"{$file_name}\"");
$fh=fopen($fname, "rb");
fpassthru($fh);
unlink($fname);
사용하는 헤더입니다.
답변 1
1. $file_name변수 안에 들어있는 값은 무엇인가요?
2. fopen에 rb로 되어있는 이유가 궁금하네요 무엇을 읽는거죠 여기에서?
3. fopen 후 fpassthru를 쓰는 이유는 무엇인가요?
주문내역을 xls파일로 출력하실거라는데 적혀있는 코드는 말씀하신 내용과 좀 다른거 같아요..
https://it-young.tistory.com/17
여기 한번 참조 해보세요