How To Use Case When In Php

Tanggal : 13 Feb 2023, Category : Tutorial, Create By : admin

The switch statement in PHP can be used as an alternative to multiple if statements. The switch statement tests a variable or expression against multiple cases and executes the code for the matching case. Here's an example of using a switch statement in PHP:

$day_of_week = "Monday";

switch ($day_of_week) {
case "Monday":
echo "Today is Monday";
break;
case "Tuesday":
echo "Today is Tuesday";
break;
case "Wednesday":
echo "Today is Wednesday";
break;
default:
echo "Today is not Monday, Tuesday or Wednesday";
break;
}

In this example, the variable $day_of_week is tested against each case in the switch statement. If the value of $day_of_week is "Monday", the code in the first case will be executed and "Today is Monday" will be outputted. If the value of $day_of_week does not match any of the cases, the code in the default case will be executed.


Keyword:
  • How To Use Case When In Php

Artikel Lain

Membuat Database Mysql

Date : 15 Aug 2018, Category : Database, Create By : admin

Tentunya setiap aplikasi yang bersifat dinamis memerlukan adanya database sebagai penyimpan data - data website yang nantinya akan di tampilkan di dalam halaman situs website. Di dalam sebuah database memliki Tabel, .....

Here's A Basic Example Of How To Use Simpy In Python

Date : 13 Feb 2023, Category : Tutorial, Create By : admin

SimPy is a process-based discrete-event simulation framework based on Python. It allows you to model real-world systems and their interactions, and to analyze the behavior of those systems over time. Here's .....

How To Install Nginx On Debian Server

Date : 13 Feb 2023, Category : Server, Create By : admin

To install Nginx on a Debian server, you need to follow these steps: Update the package list:  sudo apt-get update Install Nginx:  sudo apt-get install nginx Start the Nginx service:  sudo systemctl start nginx Check the status .....