How to calculate days till some point in future in PHP?

前端 未结 4 1645
野的像风
野的像风 2021-01-18 10:42

I\'ve a date like this: 2011-01-28 00:37:15. What would be the most efficient way to get days from now till this date? I want like number of full days till this

4条回答
  •  无人及你
    2021-01-18 11:15

    Have a look at http://de.php.net/manual/de/datetime.diff.php (PHP >=5.3.0)

    This will return you a DateIntervall wich has a public attribute days

提交回复
热议问题