PHP 로 할수 있는 일 화면 캡쳐?
PHP 로 할수 있는 일 화면 캡쳐?
https://jdh5202.tistory.com/544?category=713733
PHP 이미지 캡처하기
이미지 캡처를 지원하는 imagegrabscreen 함수는 로컬 웹 페이지를 PrtScr하는 함수로써 PHP v5.2.2 이상 지원한다. PHP 버전은 phpinfo()를 통해 확인하자. 1 2 3 4 5 6 7 8 9 10 11 12 <?php $img = imageg..
jdh5202.tistory.com
엑셀 파일도 접근 가능?
https://jdh5202.tistory.com/541
PHP 엑셀 다루기
php 엑셀 다루기 엑셀 라이브러리 다운 https://github.com/PHPOffice/PHPExcel 라이브러리 적용 require_once("PHPExcel-1.8\Classes\PHPExcel.php"); require_once("PHPExcel-1.8\Classes\PHPExcel\IOFactory.ph..
jdh5202.tistory.com
php 엑셀이 개선 버전이 출시 되었다.
php 7.0 에서 동작하지 않는 오픈소스들이 많음 주의필요
GitHub - PHPOffice/PhpSpreadsheet: A pure PHP library for reading and writing spreadsheet files
A pure PHP library for reading and writing spreadsheet files - GitHub - PHPOffice/PhpSpreadsheet: A pure PHP library for reading and writing spreadsheet files
github.com
https://link2me.tistory.com/1842
PhpSpreadsheet 설치 및 사용예제
PHPExcel 이 deprecated 되어 PHP 7.2 이상에서 지원이 안되므로 PHPSpreadsheet 를 설치해야 한다. 이용환경 : CentOS 7 PHP 7.3 yum 설치 스크립트 : https://link2me.tistory.com/1841 참조 설치 방법 - 윈도우..
link2me.tistory.com