Guest User

Untitled

a guest
Apr 19th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2.  
  3. $createdAt = new \DateTime();
  4.  
  5. echo $createdAt->format('d.m.Y h:i:s'). "\n";
  6.  
  7.  
  8. $fiveMinLater = (clone $createdAt)->add(new \DateInterval('PT5M'));
  9.  
  10. echo $fiveMinLater->format('d.m.Y h:i:s') . "\n";
  11.  
  12. $diff = $fiveMinLater->diff($createdAt)->format('%i');
  13.  
  14. if ((int)$diff == 5){
  15. echo "Different is 5 minutes \n";
  16. }
Add Comment
Please, Sign In to add comment