Created
August 4, 2021 22:26
-
-
Save tadeubdev/c2a986edd7e748fb856a07d9a97b59b3 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 | |
| echo "Hello " . "world!" // prints: Hello world! | |
| // Additionally, you can use the shorthand operator (.=). | |
| $hello = "Hello "; | |
| $hello .= "world!"; | |
| echo $hello; // prints: Hello world! | |
| // It's the equivalent to: | |
| $hello = "Hello "; | |
| $hello = $hello . "world!"; | |
| echo $hello; // prints: Hello world! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment