Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. $message = ['Good Morning', 'Good Afternoon', 'Good Evening', 'Good Night'];
  4.  
  5. $greetingsTo = function($to) use($message){
  6. return $message[rand(0,count($message)-1)].' '.$to;
  7. };
  8.  
  9. echo $greetingsTo('Tuana Şeyma');
  10.  
  11. // Good Morning Tuana Şeyma
  12. // Good Afternoon Tuana Şeyma
  13. // Good Evening Tuana Şeyma
  14. // Good Night Tuana Şeyma
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement