Guest User

Untitled

a guest
Jul 15th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <?php
  2.  
  3. class Matrix {
  4.     function show_my_destiny($pill_color) {
  5.             if ($pill_color == 'red') {
  6.                    return 'Welcome to rabbit hole...';
  7.             } else if ($pill_color == 'blue') {
  8.                    return 'Go back to you f*cking life !';
  9.             }
  10.     }
  11. }
  12.  
  13. $neo = new Matrix();
  14.  
  15. echo $neo->show_my_destiny('red');
  16. ?>
  17.  
  18.  
  19. ?>
Add Comment
Please, Sign In to add comment