[이윰] PHP 7.x에서 이윰빌더 알람 푸시(push) 관련 PHP Notice: Undefined index error 해결하기
페이지 정보
shadow2fox
2,769
2019.01.01 01:10:34
짧은주소
-
https://yadolee.com/tip/616 주소복사
본문
PHP 7.x에서 이윰빌더 알람 푸시(push) 관련 PHP Notice: Undefined index error 해결하기
푸시(push) 적용 항목(respond, memo, following, unfollow, likes, guest, levelup, adopt)이 PHP 7.x에서 에러가 난다면
그누보드5/eyoom/core/member/push_info.php를 열어 if($push[$val]) {을 검색하여 아래와 같이 수정한다.
수정 전
수정 후
그누보드5/eyoom/core/member/push_info.php를 열어 if($push[$val]) {을 검색하여 아래와 같이 수정한다.
수정 전
foreach($push_item as $val) {
if($push[$val]) {
$item = $val;
$push_tocken = true;
break;
}
}
수정 후
foreach($push_item as $val) {
if(isset($push[$val])) { //수정, Php - notice: undefined index errors 해결
$item = $val;
$push_tocken = true;
break;
}
}
추천인
레벨 149
경험치 3,343,659
Progress Bar 80.23%
- 가입일 : 2015-03-10 12:21:44
- 서명 : 인간에게 가장 큰 선물은
자기 자신에게 기회를 주는 것이다.
- 크리스 가드너, Chris Gardner -
- 자기소개 : There's never a shortcut to happiness.


댓글
첫 번째 댓글을 남겨 주세요