Guest User

Untitled

a guest
May 25th, 2018
81
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 GetPregnancyWeekString($start_date_str)
  3. {
  4. $current_week_num = floor((strtotime("now") - strtotime($start_date_str))/60/60/24/7)+1;
  5. $suffix = "th";
  6. if ($current_week_num%10 == 1)
  7. $suffix = "st";
  8. else if ($current_week_num%10 == 2)
  9. $suffix = "nd";
  10. else if ($current_week_num%10 == 3)
  11. $suffix = "rd";
  12. return "<span class=\"week_num\">$current_week_num</span>$suffix";
  13. }
  14. ?>
  15.  
  16. <div class="week_box">We're in our <?php print GetPregnancyWeekString("08/01/2009");?> week!</div>
Add Comment
Please, Sign In to add comment