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

Operator Php

Date : 17 Oct 2018, Category : Tutorial, Create By : admin

Operator pastinya tidak asing karena dari kita belajar di kelas 1 sekolah dasar kita sudah di ajari mengenai operator untuk perhitungan angka, di dalam bahasa pemprograman php operator yang di .....

Pengertian Dan Cara Trading Binary Options

Date : 25 Jul 2018, Category : Trading, Create By : admin

Selamat datang di website gudangilmuaplikasi.com, Trading binary options sebenarnya hampir sama dengan trading forex lainnya, dengan hanya merumuskan akan Naik (Higher) atau Turun (Lower) nya grafik dari platform Binary tersebut, akan tetapi dalam .....

Membuat Selengkapnya Pada Artikel Berdasarkan Jumlah Kata

Date : 23 Jul 2018, Category : Tutorial, Create By : admin

Selamat datang di website gudangilmuaplikasi.com, kali ini kami akan membahas tutorial tentang membuat Membuat Selengkapnya Pada Artikel Berdasarkan Jumlah Kata, function tambahan untuk membantu kita dalam membuat daftar artikel, berita read .....