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월 공모주 청약 일정
- Stock ipo
- 주식
- SQL
- linux
- php
- codeigniter
- 오라클
- Stock
- Oracle
- css
- IPO
- jquery
- java
- 공모주 청약
- 자바
- Eclipse
- 리눅스
- 공모주 청약 일정
- 주식 청약
- 공모주
- 맥
- 제이쿼리
- html
- 주식 청약 일정
- JavaScript
- 자바스크립트
- 코드이그나이터
- 6월 공모주 청약 일정
Archives
- Today
- Total
개발자의 끄적끄적
[php] php excel Trying to access array offset on value of type int error / php 엑셀 Trying to access array offset on value of type int 해결방법 본문
개발/php
[php] php excel Trying to access array offset on value of type int error / php 엑셀 Trying to access array offset on value of type int 해결방법
효벨 2021. 8. 12. 01:00728x90
반응형
[php] php excel Trying to access array offset on value of type int error / php 엑셀 Trying to access array offset on value of type int 해결방법
php 에서
excel 파일을 다루다 보면
여러가지 오류사항들이 종종 생기곤 합니다.
그중에서
excel 파일 업로드시
아래와 같은 오류가 나는경우의 해결방법을 공유하고자 합니다.
Trying to access array offset on value of type int
저도 인터넷을 검색해서 찾아낸거지만,
오류내용에 아마 아래와 같은 파일명이 적혀있을겁니다.
Cell/DefaultValueBinder.php
그리고 오류번호가 아마도 82번째 줄이라고 나올껀데
해당 파일을 열어서 82번재 줄로 가면 아래와 같은
else if 구문이 있습니다.
} elseif ($ pValue [0] === '=' && strlen ($ pValue)> 1) {
위처럼 되어있는것을
아래와 같이 변경하고 저장하시면 됩니다!
} elseif (!is_int($pValue) && !is_float($pValue) && $pValue{0} === '=' && strlen($pValue) > 1) {
참고들 하세요!
반응형
'개발 > php' 카테고리의 다른 글
Comments