Guest User

Untitled

a guest
Jul 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. // Set how old you "are"
  4. $age = 21;
  5.  
  6. date_default_timezone_set('America/New_York');
  7. $age_offset = 31556926 * $age;
  8.  
  9. $current_date = time();
  10. $birth_date = strftime('%m/%d/%Y', $current_date - $age_offset);
  11.  
  12. echo "Hai I'm soooo $age only. Born on $birth_date and everything!";
  13. # echo $birth_date; // Short, sweet, and to the point
  14.  
  15. ?>
Add Comment
Please, Sign In to add comment