-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogicalops.php
executable file
·65 lines (52 loc) · 1.28 KB
/
logicalops.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
// logical operators = combine conditional statements
// if(condition1 && condition 2)
// && = True if both conditions are true
// || = True if at least one condition is true
// ! = True if false. False if true.
// $temp = 15;
// $cloudy = false;
// if($temp >= 0 && $temp <= 30){
// echo "The weather is good.";
// }
// else {
// echo "The weather is bad.";
// }
// if($temp < 0 || $temp > 30){
// echo "The weather is bad.<br>";
// }
// else {
// echo "The weather is good.<br>";
// }
// if(!$cloudy) {
// echo "its sunny.";
// }
// else {
// echo "its cloudy.";
// }
// ---------------------------------
// $age = 25;
// $citizen = true;
// if ($age >= 18 && $citizen) {
// echo "you can vote!";
// }
// else {
// echo "you cannot vote.";
// }
// if (!$age >= 18 || !$citizen) {
// echo "you cannot vote.";
// }else {
// echo "you can vote!";
// }
// ---------------------------------
$child = false;
$senior = true;
$ticket = null;
if($child || $senior) {
$ticket = 10;
}
else {
$ticket = 15;
}
echo "The ticket price is \${$ticket}.";
?>