비로그인일때 $member['mb_id'] 존재
본문
$ids_wr_8 = explode(',', trim($view['wr_8']));
$ids_wr_9 = explode(',', trim($view['wr_9']));
$ids_wr_10 = explode(',', trim($view['wr_10']));
$cnt_wr_8 = count($ids_wr_8)-1;
$cnt_wr_9 = count($ids_wr_9)-1;
$cnt_wr_10 = count($ids_wr_10)-1;
$cnt_total = $cnt_wr_8 + $cnt_wr_9 + $cnt_wr_10 ;
$ids = array_merge($ids_wr_8, $ids_wr_9, $ids_wr_10);
wr_8~wr_10 에는 회원 아이디가 들어갑니다.
비로그인일때 echo $member['mb_id'] 를 하면 출력이 안되는데
<?php if(in_array($member['mb_id'], $ids)){?> 이건 왜 참이 될까요?
답변 1
<?php if( $member['mb_id'] != '' && in_array($member['mb_id'], $ids) == true ){?>
OR
<?php if( isset($member['mb_id']) == true && in_array($member['mb_id'], $ids) == true ){?>
답변을 작성하시기 전에 로그인 해주세요.