Skip to content

Instantly share code, notes, and snippets.

@InFog
Created August 30, 2015 22:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save InFog/b750bdca46b4bec45b07 to your computer and use it in GitHub Desktop.
Save InFog/b750bdca46b4bec45b07 to your computer and use it in GitHub Desktop.
Mais escopos
<?php
$livro = 'O Senhor dos Aneis';
function mostraFilme()
{
$filme = 'O Hobbit';
echo $filme;
}
echo $livro; // O Senhor dos Aneis
mostraFilme(); // O Hobbit
echo $filme; // Notice: Undefined variable: filme
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment