From d5adba3e23b465619f6eb18392c6e0c95e02d607 Mon Sep 17 00:00:00 2001 From: Simon Schindlatz Date: Tue, 11 Dec 2018 00:22:24 +0100 Subject: [PATCH] Added section for assignment operators. (#24416) * updated index.md Added new paragraph for assigment operator. Edited "More Inofrmation" section by adding two links. * Fixed formatting issues and assignment statement --- guide/english/php/php-operators/index.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/guide/english/php/php-operators/index.md b/guide/english/php/php-operators/index.md index fae6c99eda..fbba648aa0 100644 --- a/guide/english/php/php-operators/index.md +++ b/guide/english/php/php-operators/index.md @@ -62,11 +62,23 @@ title: PHP Operators +### PHP Assignment Operators +The assignment operator is `=`. The operand on the left side gets assigned the value of the expression on the right. + +#### Example + +```php + +``` #### More Information: - - +- Arithmetic Operators +- Assignment Operators