PHP 中计算日期相差天数的方法:使用 date_diff() 函数获得 DateInterval 对象。从 DateInterval 对象中提取 diff 数组中的 days 属性。该属性包含两个日期之间的天数。
PHP 中计算日期相差多少天
在 PHP 中,计算两个日期之间的天数很简单。可以使用以下函数:
int date_diff(DateTimeInterface $date1, DateTimeInterface $date2)
该函数返回一个 DateInterval
对象,其中包含 diff 属性,它是一个包含天数和其他时间单位的数组。
例如,要计算两个日期之间的天数,可以使用以下代码:
<?php $date1 = new DateTime('2023-03-08'); $date2 = new DateTime('2023-03-15'); $diff = date_diff($date1, $date2); echo $diff->days; // 输出:7 ?>
实战案例
假设您有一个在线销售系统,并且需要计算客户下单到发货之间的天数。您可以使用以下代码:
<?php // 获取订单日期和发货日期 $orderDate = new DateTime($order['created_at']); $shipDate = new DateTime($order['shipped_at']); // 计算天数 $diff = date_diff($orderDate, $shipDate); // 输出天数 echo $diff->days;
这样,您就可以轻松地计算两个日期之间的天数。
The above is the detailed content of Calculate the number of days difference between dates in php. For more information, please follow other related articles on the PHP Chinese website!