Jump to content

[SOLVED] Subtracting Time


atlanta

Recommended Posts

Hi all,

 

I having some trouble substracting time.. well ok here the basics of my project students clock in and out and i have it subtract the clock out from the clock in and i want it to output to me how many hours and mins they were clocked in . I was doing some test solutions but the one below actually outputs the hour it click in or out not the amount subtracted from each other.

The time in the below code is 3 mins and 17 secs from each other but as you can see it does output 00 for hours it gives you

 

<?php
$posted_date = "1202478546";
$cur_date = "1202478743";
$time_pass = $cur_date - $posted_date;
$elapsed_time = date("H \h\o\u\\r\s\ i \m\i\\n\s\ s \s\e\c\s",$time_pass);
print "$elapsed_time";
?>

 

 

Link to comment
https://forums.phpfreaks.com/topic/90057-solved-subtracting-time/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.