[이윰] PHP 7.x에서 이윰빌더 알람 푸시(push) 관련 PHP Notice: Undefined index: alarm 해결하기
페이지 정보
shadow2fox
2,597
2018.07.01 06:42:35
짧은주소
-
https://yadolee.com/tip/564 주소복사
본문
PHP 7.x에서 이윰빌더 알람 푸시(push) 관련 PHP Notice: Undefined index: alarm 해결하기
그누보드5/eyoom/core/member/push_info.php를 열어 // 푸쉬알람 등록을 검색하여 아래와 같이 수정한다.
수정 전
수정 전
// 푸쉬알람 등록
if(!$push[$item]['alarm']) {
$push[$item]['alarm'] = true;
include_once "../../classes/qfile.class.php";
$qfile = new qfile;
$qfile->save_file("push",$push_file,$push);
}
echo $output;
수정 후
// 푸쉬알람 등록
if(isset($push['alarm'])) { // 추가 시작 - PHP Notice: Undefined index: alarm 해결책
if(!$push[$item]['alarm']) {
$push[$item]['alarm'] = true;
include_once "../../classes/qfile.class.php";
$qfile = new qfile;
$qfile->save_file("push",$push_file,$push);
}
} // 추가 끝
echo $output;
추천인
레벨 149
경험치 3,343,659
Progress Bar 80.23%
- 가입일 : 2015-03-10 12:21:44
- 서명 : 인간에게 가장 큰 선물은
자기 자신에게 기회를 주는 것이다.
- 크리스 가드너, Chris Gardner -
- 자기소개 : There's never a shortcut to happiness.



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