php(4)
-
[PHP] PHPExcel
Cafe24 호스팅 프로젝트 진행중 Excel을 생성해야 하는 건이 있어서 사용하게 됨. PHPExcel은 Github에 등록된 오픈소스이며, 2017년 공식적으로 사용이 중단되어 더이상 개발이 진행되지 않는 프로젝트입니다. PhpSpreadsheet를 사용하기를 권장하고 있지만 Cafe24에 설치 없이 코드만으로 강제적으로 적용시 여러가지 설정오류들이 발생해 PHPExcel을 사용하게 되었음. # PHPExcel https://github.com/PHPOffice/PHPExcel GitHub - PHPOffice/PHPExcel: ARCHIVED ARCHIVED. Contribute to PHPOffice/PHPExcel development by creating an account on GitHub...
2023.04.27 -
[PHP] hasPrefix 구현하기
## $strUrl = "https://www.test.com"; if(substr($strUrl, 0, 6) === 'https:'){ echo "hasPrefix https"; }
2021.04.13 -
[PHP] .htaccess error_reporting
2020/07/16 - [개발/Web] - [PHP] .htaccess short_open_tag 설정 [PHP] .htaccess short_open_tag 설정 # short_open_tag=On|Off php_value short_open_tag 0 php_value short_open_tag 1 wonyoung2.tistory.com # error_reporting 설정 php_value error_reporting 22519 E_ALL & ~E_STRICT & ~E_NOTICE & ~E_DEPRECATED E_ALL(32767) – E_STRICT(2048) – E_NOTICE(8) – E_DEPRECATED(8192) = 22519 # 에러 레벨 상수값 Error Level Constants ..
2020.07.20 -
[PHP] PhpSpreadsheet - Excel(엑셀) 제어 라이브러리
# Documentation https://phpspreadsheet.readthedocs.io/en/latest/ Welcome to PhpSpreadsheet's documentation - PhpSpreadsheet Documentation Welcome to PhpSpreadsheet's documentation PhpSpreadsheet is a library written in pure PHP and providing a set of classes that allow you to read from and to write to different spreadsheet file formats, like Excel and LibreOffice Calc. File formats supported php..
2020.02.25