Guest User

Untitled

a guest
Jul 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2. $time = array('morning', 'noon');
  3. array_filter($time, function($a){
  4. if($a=='noon')
  5. echo 'Its lunch time';
  6. else
  7. echo "Its time for breakfast";
  8. }
  9. );
  10. ?>
Add Comment
Please, Sign In to add comment