엑셀 저장시 파일명 깨질때 해결책
페이지 정보
작성자 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 3,065회 작성일 19-10-22 23:32본문
파일이름을 UTF-8이 아닌 EUC-KR로 변환을 해주면 끝입니다.
$excelFileName = iconv('UTF-8', 'EUC-KR', '한글파일이름');
header('Content-Type: application/vnd.ms-excel;charset=utf-8');
header('Content-Disposition: attachment;filename="' . $excelFileName . '.xls"');
header('Cache-Control: max-age=0');
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
$objWriter->save('php://output');
댓글목록
등록된 댓글이 없습니다.