Skip to content

Instantly share code, notes, and snippets.

@YurePereira
Last active February 8, 2017 14:33
Show Gist options
  • Select an option

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

Select an option

Save YurePereira/e7edb2b1375a4f4fb92f3728d69c75f5 to your computer and use it in GitHub Desktop.
Criando Array associativos no PHP
<?php
$myArray = array(
'nome' => 'João',
'sobrenome' => 'Carlos',
'idade' => 30,
'telefone' => '3345-4233',
1.10 => '1',//índice com Float
);
print_r($myArray);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment