dev/web

xls출력시 참고사항

재삐신생 2013. 12. 9. 10:03
반응형

.style0{

mso-number-format:General;

text-align:general;

vertical-align:middle;

white-space:nowrap;

mso-rotate:0;

mso-background-source:auto;

mso-pattern:auto;

color:black;

font-size:11.0pt;

font-weight:400;

font-style:normal;

text-decoration:none;

font-family:"맑은 고딕", monospace;

mso-font-charset:129;

border:none;

mso-protection:locked visible;

mso-style-name:표준;

mso-style-id:0;

}

.number{

mso-number-format:"@";

}

.moneyformat{

mso-number-format:"\#\,\#\#0\_ ";

text-align:right; 

mso-pattern:auto none; 

white-space:normal;} 

.percentformat{

mso-number-format:"0\.0%";

}

.dateformat{

mso-style-parent:style0;

mso-number-format:"mm\\\/dd\\\/yyyy";

}


숫자나 문자포맷팅 방법


만약 php에서 출력하면

역슬래시 처리를 해줘야하므로,

원래대로면 데이트포맷에서 \가 3개 출력되게 해야함 고로, \\\\\\처럼 6번을 쓰는게 맞는게

2개만 출력되도 됨


\ -> \

\\ -> \

\\\ -> \\

\\\\ -> \\

.

.

\\\\\\ -> \\\


이런식으로 출력되니까 저 위는 출력값을 표시한 거라는 것,

이게 헷갈리니 ㅠㅠ

반응형