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.