Skip to content

Instantly share code, notes, and snippets.

@johnidm
Last active August 29, 2015 14:01
Show Gist options
  • Save johnidm/3a245ed397e2bb086330 to your computer and use it in GitHub Desktop.
Save johnidm/3a245ed397e2bb086330 to your computer and use it in GitHub Desktop.
$dicionario = array(
"Gato" => "Cat",
"Cachorro" => "Dog",
"Casa" => "Home",
"Filho" => "Son"
);
echo $dicionario["Casa"];
unset($dicionarioy["Casa"]);
array_push( $dicionario, array( "Pai" => "Father" ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment