Advertisement
Geicy

Untitled

Jul 30th, 2021
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. <?php
  2.  
  3. class Login {
  4.  
  5.     public static $user;
  6.  
  7.     public static function verificaLogin(){
  8.         echo "O usuario ".self::$user." estΓ‘ logado!";
  9.     }
  10. }
  11.  
  12. Login::$user = "admin";
  13. Login::verificaLogin();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement