gpt4 book ai didi

php - Carbon Date startOfDay 给我 endOfDay 日期

转载 作者:行者123 更新时间:2023-12-03 22:16:33 26 4
gpt4 key购买 nike

$dt = Carbon::now();
dd($dt->startOfDay(), $dt->endOfDay());

Carbon {#324 ▼
+"date": "2017-05-15 23:59:59.000000"
+"timezone_type": 3
+"timezone": "Europe/Paris"
}
Carbon {#324 ▼
+"date": "2017-05-15 23:59:59.000000"
+"timezone_type": 3
+"timezone": "Europe/Paris"
}

第一个变量实际上是日期和小时,dd() 函数用于显示变量的内容。

startOfDay() 方法给了我同样的东西 endOfDay() 方法...

最佳答案

最佳使用实践 copy()不同日期时间的方法。

$startDay = Carbon::now()->startOfDay();
$endDay = $startDay->copy()->endOfDay();

了解更多详情:

http://carbon.nesbot.com/docs/

关于php - Carbon Date startOfDay 给我 endOfDay 日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43996760/

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