PHP if...else Statements

0
4KB

PHP - The if...else Statement

The if...else statement executes some code if a condition is true and another code if that condition is false.

Syntax

if (condition) {
  // code to be executed if condition is true;
} else {
  // code to be executed if condition is false;
}

ExampleGet your own PHP Server

Output "Have a good day!" if the current time is less than 20, and "Have a good night!" otherwise:

$t = date("H");

if ($t < "20") {
  echo "Have a good day!";
} else {
  echo "Have a good night!";
}
Try it Yourself »

PHP - The if...elseif...else Statement

The if...elseif...else statement executes different codes for more than two conditions.

Syntax

if (condition) {
  code to be executed if this condition is true;
} elseif (condition) {
  // code to be executed if first condition is false and this condition is true;
} else {
  // code to be executed if all conditions are false;
}

Example

Output "Have a good morning!" if the current time is less than 10, and "Have a good day!" if the current time is less than 20. Otherwise it will output "Have a good night!":

$t = date("H");

if ($t < "10") {
  echo "Have a good morning!";
} elseif ($t < "20") {
  echo "Have a good day!";
} else {
  echo "Have a good night!";
}
Try it Yourself »
Suche
Kategorien
Mehr lesen
Andere
PHP Indexed Arrays
PHP Indexed Arrays In indexed arrays each item has an index number. By default, the first item...
Von PHP Tutorial 2024-05-17 08:00:38 0 5KB
Andere
PHP Strings
A string is a sequence of characters, like "Hello world!". Strings Strings in PHP are...
Von PHP Tutorial 2024-05-17 07:28:17 0 6KB
Andere
PHP if...else Statements
PHP - The if...else Statement The if...else statement executes some code if a...
Von PHP Tutorial 2024-05-17 07:46:12 0 4KB
Andere
PHP Magic Constants
PHP Predefined Constants PHP has nine predefined constants that change value depending on where...
Von PHP Tutorial 2024-05-17 07:40:16 0 5KB
Andere
PHP Data Types
PHP Data Types Variables can store data of different types, and different data types can do...
Von PHP Tutorial 2024-05-17 07:27:24 0 5KB
Sociallez https://sociallez.com