Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.69 KB | None | 0 0
  1.         public static function tsuntsun() {
  2.             $a = array('H-hey, ', 'D-');
  3.             $b = array('don\'t get the wrong idea, ', 'don\'t get the wrong impression, ', 'don\'t be mistaken, ', 'don\'t be stupid, ');
  4.             $c = array('it\'s not like I like you', 'I don\'t like you', 'it\'s not like I want to help you',
  5.                 'I\'m not trying to help you');
  6.             $d = array('...', 'or anything...');
  7.             $e = array('that function is just in my programming.', 'I just happened to have that data.', 'I was just looking that up for myself.',
  8.                 'I needed that data anyway.', 'I was just testing the function.');
  9.             return $a[array_rand($a)]. $b[array_rand($b)]. $c[array_rand($c)]. $d[array_rand($d)]. $e[array_rand($e)];
  10.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement