Advertisement
Arthur_lima

Untitled

Jun 30th, 2021
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.10 KB | None | 0 0
  1. <?php
  2.  
  3.     $nome = "Arthur";
  4.  
  5.     function exibeNome() {
  6.         global $nome;
  7.         echo $nome;
  8.     }
  9.  
  10.     exibeNome();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement