Skip to content

Instantly share code, notes, and snippets.

@raphaeldealmeida
Created February 15, 2012 20:37
Show Gist options
  • Save raphaeldealmeida/1838839 to your computer and use it in GitHub Desktop.
Save raphaeldealmeida/1838839 to your computer and use it in GitHub Desktop.
Arrays 5.3
<?php
function listarNomes(){
return array('Raphael', 'Gabriela', 'Eduarda');
}
$lista = listarNomes();
echo $lista[0];
//output:
//Raphael
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment