0
votes
4answers
51 views

How do i find the difference in 2 dates (in days) when using m-d-Y format?

I need something like this $today = date("m-d-Y"); $otherdate = "05-03-2013"; //Some math here //echo the difference between the two dates in days I've tried using strtotime but it doesn't work ...
0
votes
1answer
40 views

PHP DateTime::diff always returns 0? [closed]

I have two timestamps, one retrieved from a mysql DB and the other created for the current time: $timestart = $row[ time_started ];//2013-04-24 15:51:59 $timenow = date("Y-m-d H:i:s");//2013-04-24 ...
0
votes
3answers
36 views

Trouble calculating time difference in PHP when doing action

$timeFromMysql = strtotime($createdtime); $currenTime = SPRequest::now();; if ($diff = abs( strtotime( $timeFromMysql ) - strtotime( $currenTime ) > 30*24*60*60) { ACTION } I just wondering ...
0
votes
3answers
91 views

subtract two dates and show result in date formate

i m tried hard to get the date in the date formate after subtracting two dates but not getting the correct result ,and the result is 1970-01-07 05:00:00 but i require the result 2013-02-07 12:02:00 ...
2
votes
2answers
96 views

Calculate passed time with PHP

I got the time difference between dates like this : $time1 = "2013-02-25 12:00:00"; $time2 = "2013-01-01 12:00:00"; $tdiff = strtotime($time1) - strtotime($time2); I want extract days, hours and ...
0
votes
1answer
134 views

PHP - Date / Time difference using only working hours [duplicate]

I am trying to create a function that will work out the time difference between 2 times but only includes WORKING HOURS. This is for a project which tracks the time it takes for a job to be completed. ...
0
votes
0answers
37 views

How can you find and display the difference between two dates in PHP? [duplicate]

Possible Duplicate: How to calculate the difference between two dates using PHP? Since there clearly isn't any good canonical question on the subject, and over 5000 duplicates, I fell a ...
-1
votes
2answers
311 views

time difference in hours and min in php HH:MM format for d/m/Y - h:ia [duplicate]

Possible Duplicate: get difference in time in HH:MM format php my time format is d/m/Y - h:ia example output is 21/10/2012 - 03:49pm im using this code to calculate the difference between ...
3
votes
2answers
276 views

get difference in time in HH:MM format php

how can i get this to output HH:MM format? $to_time = strtotime("2008-12-13 10:42:00"); <--AM $from_time = strtotime("2008-12-14 8:21:00"); <-- PM $stat = round(abs($to_time - ...
-5
votes
1answer
152 views

Get total number of each day between two date in php

If I give 2 dates, I need results as follow - SUNDAY = 3 TIMES MONDAY = 3 TIMES TUESDAY = 4 TIMES WEDNESDAY = 4 TIMES THURSDAY = 4 TIMES FRIDAY = 4 TIMES SATRUDAY = 4 TIMES I am confused if this ...
0
votes
2answers
167 views

I want to get difference between two timestamps which are filled in a php form

I have a HTML form which takes the data from the user as open_date and close_date. When the form is submitted, the data will be loaded into a MYSQL database. What i want is: I have a column in my ...
0
votes
1answer
240 views

PHP Decrease count between dates

I'm currently struggling with what should be a basic task. I have a start date, an end date and a count. I need to calculate how many times an hour the third parameter (the count) should decrease ...
1
vote
2answers
176 views

Strange behaviour of PHP DateTime Class

I'm trying to get the time difference in milliseconds. $_SESSION['startTime'] = time(); $to_time = time(); //I call the code from here after a delay, say 4 seconds $from_time = ...
-1
votes
3answers
2k views

datetime difference in php

i want to display the date time difference between current date and stored date (which has been stored already in database). At the time of date difference calculation, i retrieved the date value from ...
2
votes
1answer
663 views

Date difference with leap year

I have 5 different schedules for 5 weeks: first week = Monday to Friday (8am to 5pm) && Rest days on Saturday and Sunday second week = Monday to Friday (10am to 6pm) && Rest days on ...
1
vote
5answers
213 views

PHP Calculation 'downtime'

I've made an program in PHP that stores in a MySQL database when it's working. The table that shows whether the program is working or not looks like this: Table_name: downtime Working(int) ...
0
votes
2answers
1k views

i want to date difference in week,month year in php?

I am new here and php i want to know how to calculate date difference in php. My date is mktime() formate. Please confirm this is current issue for me.