메뉴 건너뛰기

프로그램언어

조회 수 18434 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
<?
header( "Content-type: application/vnd.ms-excel; charset=euc-kr" );
header( "Expires: 0" );
header( "Cache-Control: must-revalidate, post-check=0,pre-check=0" );
header( "Pragma: public" );
header( "Content-Disposition: attachment; filename=test.xls" );

$a   = array("1","2","3");
$b   = array("2","4","5");
$sum = array("3","6","8");

echo "
    <table>
    <tr>
        <td>a</td>
        <td>b</td>
        <td>sum</td>
    </tr>
    ";

for($i=0; $i<3; $i++) {
        echo "<tr><td>$a[$i]</td><td>$b[$i]</td><td>$sum[$i]</td></tr>";
}

echo "
    </table>
    ";
?>

위의 코드를 test.php로 저장한 후 한번 실행해보라.
바로 xls파일로 만들준다. 그리고 저장할꺼냐고 물어본다.
열어보면 열린다.

오호 신기하다. 거럼 이제 mySQL같은 DB에 저장되어있는것도
엑셀로 바꿀 수 있겠죠??? ㅋㅋ

참, 참고로 엑셀로 저장될 파일명은 두번째 header지정하는 부분에 filename=요부분에서 설정해주면된다~


  1. 문자열에서 태그를 제거 (strip_tags)

    Date2016.12.23 Views17525
    Read More
  2. text파일에 한줄씩 내용추가하기

    Date2017.03.06 Views17545
    Read More
  3. PHP 도메인 이름이나 웹문서 주소 알아내기

    Date2017.03.06 Views17593
    Read More
  4. 정규식

    Date2017.04.13 Views17607
    Read More
  5. 그누보드, 여분필드 사용팁

    Date2017.03.06 Views17619
    Read More
  6. http://홈주소/?mode=xxx 하는방법

    Date2017.03.07 Views17654
    Read More
  7. PHP 날짜 함수

    Date2017.04.13 Views17687
    Read More
  8. 어떤 스마트폰으로 접속했는지 알아내는 소스 , (안드로이드 아이폰 )

    Date2014.03.26 Views17718
    Read More
  9. PHP로 엑셀 자료 MySQL에 넣기

    Date2017.03.06 Views17881
    Read More
  10. 네이버 자동 띄어쓰기를 이용하기

    Date2017.03.27 Views17945
    Read More
  11. gd_info 사용 가능한 GD 라이브러리에 대한 정보를 배열로 반환

    Date2016.12.23 Views17993
    Read More
  12. is_array — 변수가 배열인지 확인

    Date2016.12.23 Views18050
    Read More
  13. 문자열의 태그를 그대로 출력 (htmlspecialchars)

    Date2016.12.23 Views18074
    Read More
  14. fileatime 파일에 최종적으로 접근한 시간을 반환

    Date2016.12.23 Views18123
    Read More
  15. PHP EXCEL export시 시트 이름 지정하여 여러 시트에 데이터 쓰기

    Date2017.03.06 Views18274
    Read More
  16. PHP 속도 테스트 20 가지

    Date2017.03.06 Views18310
    Read More
  17. 이스케이프 함수 (htmlentities)

    Date2016.12.23 Views18379
    Read More
  18. 정규표현식 검사 도구 (ereg, eregi)

    Date2016.12.23 Views18396
    Read More
  19. PHP에서 데이터를 엑셀(Excel)로 저장

    Date2017.02.19 Views18434
    Read More
  20. 몫과 나머지 구하기

    Date2017.03.07 Views18475
    Read More
Board Pagination Prev 1 ... 5 6 7 8 9 10 11 12 13 14 ... 17 Next
/ 17

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved