Advertisement
Guest User

Untitled

a guest
Jun 28th, 2021
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2. $nome = "Geicy Rodrigues";
  3. $a = 1;
  4. $b = 3;
  5. $c = 7;
  6.  
  7. function exibeNome(){
  8.     global $nome;
  9.     echo $nome;
  10. }
  11.  
  12. exibeNome();
  13. echo "<hr>";
  14.  
  15. function exibeCidade(){
  16.     global $cidade;
  17.     $cidade = "Rio de Janeiro";
  18. }
  19.  
  20. exibeCidade();
  21. echo $cidade;
  22. echo "<hr>";
  23.  
  24. function soma() {
  25.     echo $GLOBALS['a'] + $GLOBALS['b'] + $GLOBALS['c'];
  26. }
  27. soma();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement