-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswitch_case.php
51 lines (45 loc) · 914 Bytes
/
switch_case.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
// switch & case
// break ... jump outside from current statment
// switch (n){
// case condition_1:
// // code to exe
// break;
// case condition_2:
// // code for condition 2
// break;
// case condition_3:
// // code for condition 3
// break;
// default:
// // code to exe in default mode
// break;
// }
$variable = true;
switch (gettype($variable)) {
case "string":
print_r('Variable is string');
break;
case "integer":
print_r('Variable is integer');
break;
case "double":
print_r("variable is double");
break;
default:
print_r('Type is not defined!');
break;
}
$a=0;
while ($a <= 10) {
# code...
if ($a === 5) {
# code...
break;
}else{
print_r("number $a");
print_r("\n");
}
$a++;
}
?>