我有4個變量。如何在PHP中使用多個條件執行if條件?
我該怎麼做?
$x1='on';
$x2='';
$x3='';
$x4='';
if $x1=='on' and $x2 is empty and $x3 is empty and $x4 is empty , do this else do that ?
我有4個變量。如何在PHP中使用多個條件執行if條件?
我該怎麼做?
$x1='on';
$x2='';
$x3='';
$x4='';
if $x1=='on' and $x2 is empty and $x3 is empty and $x4 is empty , do this else do that ?
像這樣:
if($x =='on' && $x2 =="" && $x3 == "" && $x4 == ""){
}else{
}
以備將來參考PHP手冊和這裏的鏈接表現運營商: http://php.net/manual/en/language.operators.logical.php
或者,您可以使用空命令,就像這樣:
if($x =='on' && empty($x2) && empty($x3) && empty($x4)){
}
else{
}
你[不應該使用'empty'作爲應該存在的變量](http://kunststube.net/isset);改用'!$ x2'。 – deceze
http://php.net/manual/zh/language.operators.logical.php –
W歡迎來到Stack Overflow。詢問代碼的問題必須證明對所解決問題的最小理解。包括嘗試解決方案,爲什麼他們沒有工作,以及預期的結果。 – dparoli