<?php
function teste() {
$mensagem = "Olá do escopo local!\n";
echo $mensagem;
}
teste();
echo $mensagem;
//vai exibir erro pois a variável $mensagem não existe fora da função teste
//"PHP Warning: Undefined variable $mensagem in /tmp/main.php on line 8"
?>
To embed this project on your website, copy the following code and paste it into your website's HTML: