Skip to content

Instantly share code, notes, and snippets.

@raphaeldealmeida
Created February 15, 2012 20:49
Show Gist options
  • Save raphaeldealmeida/1838903 to your computer and use it in GitHub Desktop.
Save raphaeldealmeida/1838903 to your computer and use it in GitHub Desktop.
Arrays 5.4
<?php
//array vazio
$lista = [];
//array
$lista = ['Raphael', 'Gabriela', 'Eduarda'];
//array multi-dimensional
$matriz = [['laranja', 'banana'], ['pera', 'morango']];
//dicionário
$lista = ['nome' => 'Raphael', 'linguagem' => 'PHP'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment