PHP 将 DateInterval 转换为 int
PHP Converting DateInterval to int
我正在使用此代码:
$due_date = new DateTime($_POST['due_date']);
$today = new DateTime();
$months = $due_date->diff($today);
$months->format("%m");
$fine = 0.02 * $price * $months; // i got error in this line
$bill = $price + $fine;
我想计算一下,如果有人迟交,那么他们每个月都会被罚款。错误信息是:
Object of class DateInterval could not be converted to int
您计算了几个月的差异,但您从未真正使用过该值。 format
方法会输出一些内容,但不会更改实际的 DateInterval。
这样试试:
$due_date = new DateTime($_POST['due_date']);
$today = new DateTime();
$diff = $due_date->diff($today);
$months = $diff->format("%m");
$fine = 0.02 * $price * $months;
$bill = $price + $fine;
出现错误消息是因为$months
不是一个int,而是一个像这样的Datetime对象:
DateInterval Object
(
[y] => 0
[m] => 4
[d] => 12
[h] => 6
[i] => 56
[s] => 9
[weekday] => 0
[weekday_behavior] => 0
[first_last_day_of] => 0
[invert] => 0
[days] => 133
[special_type] => 0
[special_amount] => 0
[have_weekday_relative] => 0
[have_special_relative] => 0
)
你可以这样得到月份的整数值
$due_date = new DateTime('13-02-2016');
$today = new DateTime();
$months = $due_date->diff($today);
echo $months->m;
中查看以上结果
所以基本上你的代码看起来像
$due_date = new DateTime($_POST['due_date']);
$today = new DateTime();
$months = $due_date->diff($today);
$fine = 0.02 * $price * $months->m; // i got no error in this line
$bill = $price + $fine;
Peter Darmis 的回答是错误的。我不能投反对票也不能评论它所以我会添加这个新答案。
DateInterval通过解构不同部分的间隔来表示一个时间段,年,月,日等...所以"m"在建议的解决方案中永远不会大于12。
所以你应该这样做:
$due_date = new DateTime('13-02-2016');
$today = new DateTime();
$diff = $due_date->diff($today);
$months = ($diff->y * 12) + $diff->m;
echo $months;
在沙盒中检查:
http://sandbox.onlinephpfunctions.com/code/907b39ffee4586c4c9481ff3e0ea1aeb2d27c7b8
我正在使用此代码:
$due_date = new DateTime($_POST['due_date']);
$today = new DateTime();
$months = $due_date->diff($today);
$months->format("%m");
$fine = 0.02 * $price * $months; // i got error in this line
$bill = $price + $fine;
我想计算一下,如果有人迟交,那么他们每个月都会被罚款。错误信息是:
Object of class DateInterval could not be converted to int
您计算了几个月的差异,但您从未真正使用过该值。 format
方法会输出一些内容,但不会更改实际的 DateInterval。
这样试试:
$due_date = new DateTime($_POST['due_date']);
$today = new DateTime();
$diff = $due_date->diff($today);
$months = $diff->format("%m");
$fine = 0.02 * $price * $months;
$bill = $price + $fine;
出现错误消息是因为$months
不是一个int,而是一个像这样的Datetime对象:
DateInterval Object
(
[y] => 0
[m] => 4
[d] => 12
[h] => 6
[i] => 56
[s] => 9
[weekday] => 0
[weekday_behavior] => 0
[first_last_day_of] => 0
[invert] => 0
[days] => 133
[special_type] => 0
[special_amount] => 0
[have_weekday_relative] => 0
[have_special_relative] => 0
)
你可以这样得到月份的整数值
$due_date = new DateTime('13-02-2016');
$today = new DateTime();
$months = $due_date->diff($today);
echo $months->m;
中查看以上结果
所以基本上你的代码看起来像
$due_date = new DateTime($_POST['due_date']);
$today = new DateTime();
$months = $due_date->diff($today);
$fine = 0.02 * $price * $months->m; // i got no error in this line
$bill = $price + $fine;
Peter Darmis 的回答是错误的。我不能投反对票也不能评论它所以我会添加这个新答案。
DateInterval通过解构不同部分的间隔来表示一个时间段,年,月,日等...所以"m"在建议的解决方案中永远不会大于12。
所以你应该这样做:
$due_date = new DateTime('13-02-2016');
$today = new DateTime();
$diff = $due_date->diff($today);
$months = ($diff->y * 12) + $diff->m;
echo $months;
在沙盒中检查: http://sandbox.onlinephpfunctions.com/code/907b39ffee4586c4c9481ff3e0ea1aeb2d27c7b8