php echo wenn zwei Bedingungen wahr sind
Sie können die if
-Anweisung in PHP verwenden, um zu überprüfen, ob zwei Bedingungen wahr sind. Die Syntax für eine if
-Anweisung sieht wie folgt aus:
<?php
$condition1 = true;
$condition2 = true;
if ($condition1 && $condition2) {
echo "Both conditions are true\n";
}
$condition1 = false;
$condition2 = true;
if ($condition1 && $condition2) {
echo "Both conditions are true\n";
} else {
echo "One of the conditions is false\n";
}
$condition1 = true;
$condition2 = false;
if ($condition1 && $condition2) {
echo "Both conditions are true\n";
} else {
echo "One of the conditions is false\n";
}
$condition1 = false;
$condition2 = false;
if ($condition1 && $condition2) {
echo "Both conditions are true\n";
} else {
echo "One of the conditions is false\n";
}
Sie können den &&
-Operator verwenden, um mehrere Bedingungen zu überprüfen.
<?php
$a = 10;
$b = 20;
if ($a > 5 && $b < 30) {
echo "Both conditions are true\n";
}
$a = 5;
$b = 20;
if ($a > 5 && $b < 30) {
echo "Both conditions are true\n";
} else {
echo "One of the conditions is false\n";
}
$a = 10;
$b = 35;
if ($a > 5 && $b < 30) {
echo "Both conditions are true\n";
} else {
echo "One of the conditions is false\n";
}
$a = 5;
$b = 35;
if ($a > 5 && $b < 30) {
echo "Both conditions are true\n";
} else {
echo "One of the conditions is false\n";
}
In diesem Beispiel wird der Code im if
-Block ausgeführt, wenn der Wert von $a
größer als 5 und der Wert von $b
kleiner als 30 ist.