우선 순위 적용?
본문
$sql = " select ct_status
from {$g5['g5_shop_cart_table']}
where od_id = '$od_id' ";
$result = sql_query($sql);
$value = '';
while ($row=sql_fetch_array($result)) {
$value .= (($value)? ',' : '').$row['ct_status'];
}
if (strlen($value)==strlen(str_replace(array('교환신청','교환중','교환완료','반품신청','반품중','반품완료','취소신청','취소완료'),'',$value))) {
$od_return_status = '';
$od_status = $ct_status;
$od_return_memo1 = '';
$od_return_memo2 = '';
$sql2 = " update {$g5['g5_shop_order_table']}
set od_return_memo1 = '$od_return_memo1',
od_return_memo2 = '$od_return_memo2',
od_return_status = '$od_return_status',
od_status = '$od_status'
where od_id = '$od_id' ";
sql_query($sql2);
}
이런 소스를 만들었습니다.
$od_status = $ct_status;
이 부분에서 ct_status를 우선 순위 적용할 수 있을까요?
지금은 배열 중 가장 첫번째 것을 적용하는데
그걸 있는 ct_status 여러 개중에 완료 > 배송 > 준비 > 입금 순으로 적용이 되게요
만약
$ct_status가 준비,배송,입금 이렇게면 $od_status = 배송 이렇게요
!-->
답변을 작성하시기 전에 로그인 해주세요.