php类DateInterval的对象无法转换为字符串

前端之家收集整理的这篇文章主要介绍了php类DateInterval的对象无法转换为字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经尝试使用date_diff和date_create来获得与已经转换为字符串的两个日期的区别.

这里是代码

$date_1 = date_create();
$date_now = date_format($date_1,'Y-m-d');


//echo $date_now . "\n";
$date=date_create($date_now);
date_add($date,date_interval_create_from_date_string("3 days"));
$date_return =  date_format($date,"Y-m-d");


$diff = date_diff(date_create($date_now),date_create($date_return));

echo $diff;

我收到这个错误

Object of class DateInterval could not be converted to string
您需要拨打 @L_301_0@才能将该差异显示为字符串.
echo $diff->format('%d days');

有关所有可用格式选项,请参阅手册.

原文链接:https://www.f2er.com/php/131909.html

猜你在找的PHP相关文章