gpt4 book ai didi

php - Carbon 从 Carbon::now() 中减去 Datetime

转载 作者:可可西里 更新时间:2023-11-01 13:14:33 25 4
gpt4 key购买 nike

我想使用这个 Carbon 函数:Carbon::now()->subDays(5)->diffForHumans()

我需要创建正确的整数。

我正在加载一个带有日期时间的字符串,我想在 Laravel 中像这样减去它:

 $datetime = $score->created_at;

然后我将当前时间保存到一个变量中

 $now = Carbon::now()->toDateTimeString();

这是我得到的:

 echo $now . '<br>'; // 2014-07-13 22:53:03
echo $datetime; // 2014-07-12 14:32:17

但是当我想从另一个中减去一个时,我得到以下错误:

 echo $now - $datetime;

Object of class Carbon\Carbon could not be converted to int

如有任何帮助,我们将不胜感激。

最佳答案

我知道这有点晚了,但这行得通:

$score->created_at->diffForHumans(\Carbon\Carbon::now())

关于php - Carbon 从 Carbon::now() 中减去 Datetime,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24727809/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com