Last active
August 6, 2021 17:08
-
-
Save tadeubdev/a553c9c7a1fcac02801d8af66ed3a9ec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $value = 123; | |
| $value += 123; | |
| echo $value; // prints 246 | |
| // Or | |
| $value = "Hello"; | |
| $value .= " world"; | |
| echo $value; // prints "Hello world" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment