== 2 ?? $order['status'] == 3
можноли сделать как то так
$order['status'] == 1 ?? 2 ?? 3
if (intval($order['status']) >= 1 && intval($order['status']) <= 3) {...}
вес суть был то чтобы по меня написать
$whiteList = [1,2,3]; if (in_array(intval($order['status']), $whiteList)) {...}
$status = ['PENDING_CONFIRMATION', 'CONFIRMED', 'PENDING_PACKING', 'PACKED', 'PENDING_SHIPPING', 'SHIPPED',]; if (in_array($order['status'], $status)){ делаю что то }
Обсуждают сегодня