csv 대용량 파일 인코딩 후 다운로드까지
csv 대용량 파일 인코딩 후 다운로드까지ini_set('memory_limit',-1); // 무제한set_time_limit(0); // 무제한 $filename = "Temp/shoppingmall.csv"; $local_file = $_SERVER['DOCUMENT_ROOT']."/excel/".$filename; $download_rate = 300; // 다운로드 속도 조절(?) if (is_file($local_file)) { // 파일 존재여부 // 헤더설정 csv라서 EUC-KR header("Content-Type: application/vnd.ms-excel; charset=EUC-KR"); header("Content-Length: ".filesize($local_file)); he..