Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- MYSQL
- 7월 공모주 청약 일정
- 제이쿼리
- 오라클
- IPO
- 주식 청약
- codeigniter
- linux
- 공모주 청약
- SQL
- Stock ipo
- 코드이그나이터
- 자바
- Eclipse
- 6월 공모주 청약 일정
- Stock
- 리눅스
- 공모주
- 주식
- 맥
- php
- jquery
- 자바스크립트
- JavaScript
- Oracle
- java
- css
- 공모주 청약 일정
- 주식 청약 일정
- html
Archives
- Today
- Total
개발자의 끄적끄적
[php] php excel Array and string offset access syntax with curly braces is deprecated 에러 해결 방법 본문
개발/php
[php] php excel Array and string offset access syntax with curly braces is deprecated 에러 해결 방법
효벨 2021. 10. 4. 01:00728x90
반응형
[php] php excel Array and string offset access syntax with curly braces is deprecated 에러 해결 방법
php 7.4 에서
엑셀을 다운로드 부분을
phpExcel 라이브러리를 이용해서 작업하던중
아래와 같은 오류가 나는 경우가 있습니다.
Array and string offset access syntax with curly braces is deprecated
그럴때는
오류나는 위치의 파일에 가서
아래와 같이 중괄호를 대괄호로 변경해주시면 됩니다!
{0} -> [0]
참고들 하세요!
반응형
'개발 > php' 카테고리의 다른 글
[php] php excel ERR_INVALID_RESPONSE 에러 해결 방법 (0) | 2021.10.04 |
---|---|
[php] php Fatal error: Class XMLWriter not found error 해결 방법 (0) | 2021.10.04 |
[php/codeigniter] codeigniter insert_batch example / 코드이그나이터 다중 insert 예제 (0) | 2021.10.03 |
[php] php remove script tag example / php script 태그 제거하는 정규식 (0) | 2021.10.03 |
[php] php remove html tags example / php html 태그제거 정규식 (0) | 2021.10.03 |
Comments