Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
340 views
in Technique[技术] by (71.8m points)

php - Get time difference

How can I compute time difference in PHP?

example: 2:00 and 3:30.

I want to convert the time to seconds then subtract them then convert it back to hours and minutes to know the difference. Is there an easier way to get the difference?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Look at the PHP DateTime object.

$dateA = new DateTime('2:00');
$dateB = new DateTime('3:00');

$difference = $dateA->diff($dateB);

(assuming you have >= PHP 5.3)

You can also do it the procedural way...

$dateA = strtotime('2:00');
$dateB = strtotime('3:00');

$difference = $dateB - $dateA;

See it on CodePad.org.

You can get the hour offset like so...

$hours = $difference / 3600;

If you are dealing with times that fall between a 24 hour period (0:00 - 23:59), you could also do...

$hours = (int) date('g', $difference);

Though that is probably too inflexible to be worth implementing.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...