PHPExcel 3

[PHP] 엑셀 다운로드 파일 한글 깨짐 현상

PHP 에서 엑셀 파일로 다운로드했을때에 파일내에 한글이 깨지는 현상이 발생 header( "Content-type: application/vnd.ms-excel; charset=euc-kr"); header( "Content-Disposition: attachment; filename=$file_name" ); header( "Content-Description: PHP4 Generated Data" ); print(""); 해결 방법을 찾아보니 위 처럼 소스를 수정하라고 하는데 난 잘안됐다 ​ 결국은 아래 소스로 해결 header( "Content-type: application/vnd.ms-excel;charset=UTF-8"); header( "Expires: 0" ); header( "Cache..

IT/PHP 2020.08.26

[Composer] composer 설치시 오류 Your requirements could not be resolved to an installable set of packages.

composer 를 이용한 phpspreadsheet 를 설치하려고하는데 계속 아래와 같은 오류가 떴습니다. 하지만 친절하게도 Problem 1 이라고 하면서 어떤 내역이 문제인지 명시를 해주어서 오류해결에 아주 많은 도움이 되었습니다. Problem 1 - Installation request for phpoffice/phpspreadsheet ^1.13 -> satisfiable by phpoffice/phpspreadsheet[1.13.0]. - phpoffice/phpspreadsheet 1.13.0 requires ext-zip * -> the requested PHP extension zip is missing from your system. 첫줄 에러보다는 두번째줄 에러가 뭔가 더 심플해보여..

IT/PHP 2020.06.24
300x250