<?
ini_set('memory_limit', -1);
// 데이터 양이 많은 경우 메모리 제한 해제
$down_date = date("Ymd").$fName;
// 파일명 정의
header( "Content-type: application/vnd.ms-excel" );
header( "Content-Disposition: attachment; filename=DB-$down_date".".xls" );
header( "Content-Description: PHP4 Generated Data" );
?>
'공부 > PHP' 카테고리의 다른 글
php 숫자 확인 함수 (정규식) (0) | 2017.01.20 |
---|---|
html 확장자에서 php 실행이 안 될 경우 (0) | 2017.01.03 |
DB Connection , [DB 접속] (0) | 2017.01.03 |
전화번호 구분자 없이 받고, 구분자 생성 해주는 정규식.[01012345678->010-1234-5678] (0) | 2017.01.03 |