Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

datetime - get php DateInterval in total 'minutes'

I am trying to get the PHP "DateInterval" value in "total minutes" value. How to get it? Seems like simple format("%i minutes") not working?

Here is the sample code:

$test = new DateTime("48 hours");
$interval = $test->diff(new DateTime());

Now if I try to get the interval in total days, its fine:

echo $interval->format('%a total days');

It is showing 2 days as output, which is totally fine. What I am trying to get if to get the value in "total minutes", so I tried:

echo $interval->format('%i total minutes');

Which is not working. Any help appreciated to get my desired output.

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)
abs((new DateTime("48 hours"))->getTimestamp() - (new DateTime)->getTimestamp()) / 60

That's the easiest way to get the difference in minutes between two DateTime instances.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.6k users

...