我似乎无法弄清楚为什么这不能正常工作。这是正在设置的变量,但是在“类型”的最终结果中,它将其设置为 m 而不是 fm
cpanel_notifications - 1 远程服务器 -
1
if ($_POST['cpanel_notifications'] == 1){
$type = "m";
}
elseif($_POST['cpanel_notifications'] == 0){
$type = "nm";
}
elseif($_POST['cpanel_notifications'] == 1 && $_POST['remote_server'] == 1){
$type = "fm";
}
elseif($_POST['cpanel_notifications'] == 0 && $_POST['remote_server'] == 0){
$type = "fnm";
}
结果:米