fork(1) download
  1. <?php
  2.  
  3. $variavel; // Variável indefinida
  4. echo $variavel; // Notice: Undefined variable: variavel in..
  5.  
  6. if (!empty($variavel))
  7. echo "A {$variavel} pode ser usada, pois não está vazia ou indefinida.";
  8. else
  9. echo "A variável está vazia ou não foi definida.";
Success #stdin #stdout #stderr 0.02s 24448KB
stdin
Standard input is empty
stdout
A variável está vazia ou não foi definida.
stderr
PHP Notice:  Undefined variable: variavel in /home/mK70nf/prog.php on line 4