Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php
  2. function show_fruit($timestamp) {
  3. if($timestamp >= strtotime("-12 hours")) {
  4. return 'images/lime.png';
  5. } else if($timestamp >= strtotime("-24 hours")) {
  6. return 'images/lemon.png';
  7. } else if($timestamp >= strtotime("-38 hours")) {
  8. return 'images/pom.png';
  9. } else {
  10. // the final one if it doesn't suit the others
  11. return 'images/strawberry.png';
  12. }
  13. }
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement