Created
August 3, 2014 20:04
-
-
Save maykonmeier/060744337d155559a149 to your computer and use it in GitHub Desktop.
Operadores de String
This file contains 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 | |
$welcome = "Bem vindo, "; | |
$name = "Maykon"; | |
// Concatenação | |
echo $welcome . $name; | |
$phrase = $welcome; | |
// Atribuição e concatenação | |
$phrase .= $name; | |
echo $phrase; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment