Skip to content

Instantly share code, notes, and snippets.

@YurePereira
Created February 8, 2017 17:11
Show Gist options
  • Select an option

  • Save YurePereira/daf955182ef6bdaab40d6dc4d21716cb to your computer and use it in GitHub Desktop.

Select an option

Save YurePereira/daf955182ef6bdaab40d6dc4d21716cb to your computer and use it in GitHub Desktop.
Lendo dados de um Array associativo.
<?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