[기타] php를 이용한 mysql 엑셀 파일 만들기
2018.04.05
북마크 작성자 정보
작성일/수정일
2019-07-24 17:18:45 / 2018-04-05 17:18:45
* 소스상단 헤데에 지정
header( "Content-type: application/vnd.ms-excel" );
header( "Content-Disposition: attachment; filename=report.xls" );
header( "Content-Description: PHP4 Generated Data" );
* meta에 한글이 가끔 안나오는 경우가 있는데..
<meta http-equiv=Content-Type content="text/html; charset=ks_c_5601-1987">
charset를 지정해 주면 된다.
* 숫자를 텍스트형으로 변경주는 방법
- 휴대전화 010 000 0000 앞자리 0이 제외된 상태로 엑셀에 저장된다면
- style=\"mso-number-format:\@;\" 텍스트형으로 변경한다.
- "<tr><td style=\"mso-number-format:\@;\">$res[0]</td><td>$res[1]</td><td>$res[2]</td></tr>