From 72271902d492d477643c61fe7fbf4f0ac09e2058 Mon Sep 17 00:00:00 2001 From: sharma201203 Date: Mon, 17 Oct 2022 10:41:18 +0530 Subject: [PATCH] update operators --- anchal/oprators.php | 194 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 194 insertions(+) create mode 100644 anchal/oprators.php diff --git a/anchal/oprators.php b/anchal/oprators.php new file mode 100644 index 0000000..3f10d70 --- /dev/null +++ b/anchal/oprators.php @@ -0,0 +1,194 @@ + + +
+
+
+

Arithmetic

+
+

1.Addition

+ +
+

2.Subtraction

+ +
+

3.Multiplication

+ +
+

4.Division

+ +
+

5. Modulus

+ +
+

6.Exponentiation

+ +
+
+

Assignment

+
+

1.x = y

+ +
+

2.Addition

+ +
+

3.Subtraction

+ + +
+

4.Multiplication

+ +
+

5.Division

+ +
+

6.Modulus

+ +
+ +
+
+

Comparison

+
+

1.Equal

+ +
+

2.Identical

+ +
+

3.Not Equal

+ +
+

4.Not Equal

+ $y); // returns true because values are equal +?> +
+

5.Not identical

+ +
+

6.Greater than

+ $y); // returns true because values are equal +?> +
+

7.Less than

+ +
+

8.Greater than or equal to

+= $y); // returns true because values are equal +?> +
+

9.Less than or equal to

+ +
+

10.Spaceship

+ $y); // returns true because values are equal +?> +
+
+
+ +