Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  * @author Genesis730
  5.  * @copyright 2011
  6.  */
  7.  
  8.  
  9. $hms = "12:00:00";
  10.  
  11. list($hrs,$mins,$secs) = explode(':',$hms);
  12. $seconds = (time() - mktime($hrs,$mins,$secs)) / 60;
  13.  
  14. echo "<br /><br />Seconds: ".$seconds;
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement