[이윰] PHP 7.x에서 이윰빌더 알람 푸시(push) 관련 PHP Notice: Undefined index error 해결하기

페이지 정보

shadow2fox 2,096 2019.01.01 01:10

평점

본문

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]) {을 검색하여 아래와 같이 수정한다.

수정 전

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;
    }
}
추천인
  • 추천해 주세요
10
shadow2fox - 회원등급 : 자연/Level 142 - 포인트 : 2,540,260
레벨 142
경험치 3,035,571

Progress Bar 76%

- 가입일 : 2015-03-10 12:21:44
- 서명 : 인간에게 가장 큰 선물은 자기 자신에게 기회를 주는 것이다. - 크리스 가드너, Chris Gardner -
- 자기소개 : There's never a shortcut to happiness.

댓글

첫 번째 댓글을 남겨 주세요