Skip to content

Instantly share code, notes, and snippets.

@InFog
Created August 30, 2015 22:05
Show Gist options
  • Save InFog/88222f212c320bf226ce to your computer and use it in GitHub Desktop.
Save InFog/88222f212c320bf226ce to your computer and use it in GitHub Desktop.
Escopos
<?php
$nome = 'InFog';
echo $nome; // InFog
function mostraNome()
{
$nome = 'Coragem';
echo $nome;
}
mostraNome(); // Coragem
echo $nome; // InFog
mostraNome(); // Coragem
echo $nome; // InFog
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment