我想削减 if 语句并使其成为最佳方式
if ($box === 1) {
$message['sender'] = $data['user_profile_id'];
$message['receiver'] = $data['to_user_profile_id'];
} else {
$message['sender'] = $data['to_user_profile_id'];
$message['receiver'] = $data['user_profile_id'];
}
1 次尝试:
$message['sender'] = $box === 1 ? $data['user_profile_id'] : $data['to_user_profile_id'];
$message['receiver'] = $box === 1 ? $data['to_user_profile_id'] : $data['user_profile_id'];
有没有更好的方法来切换发送方/接收方变量?