Advertisement
Guest User

Untitled

a guest
May 28th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. $🙈 = 5;
  4. $💩 = 10;
  5. $💩🙈 = 20;
  6.  
  7. echo $🙈*$💩*$💩🙈;
  8.  
  9. class 💩 {
  10.     private $💩;
  11.  
  12.     public function __construct(){
  13.         $this->💩 = 5;
  14.     }
  15.  
  16.     public function 💩💩() {
  17.         echo $this->💩;
  18.     }
  19. }
  20.  
  21. $💩💩 = new 💩();
  22. $💩💩->💩💩();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement