使用带有strototime的diffForHumans

时间:2017-06-01 18:16:02

标签: laravel php-carbon

我正在尝试使用diffForHumans,其日期是字符串格式。我使用strtotime将字符串转换为Unix时间戳。问题是现在我收到的错误无法将整数转换为时间。我错过了什么?

这是我的代码。

<td>{{strtotime($user['scan'])->diffForHumans(time())}}</td>

$ user ['scan']是一个字符串

的日期

1 个答案:

答案 0 :(得分:3)

使用解析。默认情况下,日期与当前时间进行比较。

<td>{{ \Carbon\Carbon::parse($user['scan'])->diffForHumans() }}</td>