PHP 嵌套 if 语句
嵌套 If
你可以在 if
语句中包含 if
语句,这就是所谓的嵌套 if
语句。
示例
一个 if
在一个 if
内
$a = 13;
if ($a > 10) {
echo "Above 10";
if ($a > 20) {
echo " and also above 20";
} else {
echo " but not above 20";
}
}
尝试一下 »
你可以在 if
语句中包含 if
语句,这就是所谓的嵌套 if
语句。
一个 if
在一个 if
内
$a = 13;
if ($a > 10) {
echo "Above 10";
if ($a > 20) {
echo " and also above 20";
} else {
echo " but not above 20";
}
}
尝试一下 »
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]