From c87c76f8cba405ae7ce4753e248c9f34cf6c8528 Mon Sep 17 00:00:00 2001 From: Naman jain Date: Tue, 16 Oct 2018 08:34:10 +0530 Subject: [PATCH] include my added text to the file (#18972) --- .../guide/english/php/PHP Operators/index.md | 61 ++++++++++++++++++- 1 file changed, 59 insertions(+), 2 deletions(-) diff --git a/client/src/pages/guide/english/php/PHP Operators/index.md b/client/src/pages/guide/english/php/PHP Operators/index.md index a73dfe9f36..fae6c99eda 100644 --- a/client/src/pages/guide/english/php/PHP Operators/index.md +++ b/client/src/pages/guide/english/php/PHP Operators/index.md @@ -3,9 +3,66 @@ title: PHP Operators --- ## PHP Operators -This is a stub. Help our community expand it. +

Operators are used to perform operations on variables and values.

+

PHP divides the operators in the following groups:

+ +

PHP Arithmetic Operators

+

The PHP arithmetic operators are used with numeric values to perform common arithmetical operations, such as addition, subtraction, multiplication etc.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OperatorNameExampleResult
+Addition$a + $bSum of $a and $b
-Subtraction$a - $bDifference of $a and $b
*Multiplication$a * $bProduct of $a and $b
/Division$a / $bQuotient of $a and $b
%Modulus$a % $bRemainder of $a divided by $b
**Exponentiation$a ** $bResult of raising $a to the $b'th power
+ -This quick style guide will help ensure your pull request gets accepted.