forked from assembler-institute/php-basics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoperators.php
More file actions
91 lines (52 loc) · 851 Bytes
/
operators.php
File metadata and controls
91 lines (52 loc) · 851 Bytes
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
#arithmetic operators
var_dump(1+1);
echo"<br>";
var_dump(2-1);
echo"<br>";
var_dump(2*3);
echo"<br>";
var_dump(10%3);
echo"<br>";
var_dump(15/2);
echo"<br><br>";
#comparison operators
var_dump(2==2);
echo"<br>";
var_dump(2!=1);
echo"<br>";
var_dump(5<10);
echo"<br>";
var_dump(10>5);
echo"<br>";
var_dump(5<=5);
echo"<br>";
var_dump(5>=2);
echo"<br><br>";
#logical operators
$first=true;
$second=false;
if(($first===true) && ($second===false)){
echo "true";
}
echo"<br>";
if(($first===true) || ($second===false)){
echo "true";
}
echo"<br>";
if(($first===true) and ($second===false)){
echo "true";
}
echo"<br>";
if(($first===true) or ($second===false)){
echo "true";
}
echo"<br>";
if(!$second){
echo "false";
}
echo"<br>";
if(($first===true) xor ($second===true)){
echo "true";
}
?>