Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2. $ts = strtotime($bd);
  3.  
  4. $now = time();
  5. $now->setTime( 0, 0, 0 );
  6. $match_date = $ts;
  7. $match_date->setTime( 0, 0, 0 );
  8. $diff = $now->diff( $match_date );
  9. $diffDays = (integer)$diff->format( "%R%a" );
  10.  
  11.  
  12. switch( $diffDays ) {
  13. case -1:
  14. return true;
  15. break;
  16. default:
  17. return false;
  18. }
  19.  
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement