728x90
반응형

php excel 4

[PHP] PHP에서 .CSV 로 내보내기, php excel .csv file download

■ PHP php excel .csv file download PHP를 이용해 MySQL DB(데이터베이스)의 데이터 자체를 CSV 파일로 내보내야 하는 경우가 있음 ■ 예제 PHP를 이용해 CSV 파일 형태로 내보내는 예제 // 파일명 지정 $filename = "Example_Filename_" . date("Ymd") . ".csv"; header('Content-Type:text/css;charset=EUC-KR;'); header('Expires: 0'); header('Content-Transfer-Encoding: binary'); header('Cache-Control: private, no-transform, no-store, must-revalidate'); header("Content..

PHP 2022.02.24

[PHP] php_writeexcel 이용 .xls 파일 생성

■ PHP php_writeexcel 이용 .xls 파일 생성 PHP에서 .xls 파일 생성 시 대부분 PHPExcel을 사용하지만 최소 php 5.2 이상이어야 가능하기 때문에 다른 라이브러리를 사용해야할 때가 있음 많은 라이브러리 중 php_writeexcel 에 대한 사용법을 정리함 ■ php_writeexcel http://www.bettina-attack.de/jonny/view.php/projects/php_writeexcel/ bettina-attack.de www.bettina-attack.de ■ 사용법 배열에 저장된 값에 문자 변환 함수 적용을 위해 array_map 함수 사용함

PHP 2022.02.17
728x90
반응형