Created
February 8, 2017 17:11
-
-
Save YurePereira/daf955182ef6bdaab40d6dc4d21716cb to your computer and use it in GitHub Desktop.
Lendo dados de um Array associativo.
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 | |
| $myArray = array( | |
| 'nome' => 'João', | |
| 'sobrenome' => 'Carlos', | |
| 'idade' => 30, | |
| 'telefone' => '3345-4233' | |
| ); | |
| echo 'My name is ' . $myArray['nome'] . ' ' . $myArray['sobrenome']; | |
| echo ' and I\'m ' . $myArray['idade'] . ' years old.'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment