我想从数据库“start_time”获取数据和“end_time”,有没有办法在 Laravel 中显示每小时的所有时间?

发布于 2025-01-11 08:37:30 字数 168 浏览 0 评论 0原文

我想从数据库“start_time”和“end_time”获取数据,有没有办法在 Laravel 中显示每小时的所有时间?

例如: 开始时间 = 8:00 end_time = 11:00

示例输出:

8:00 9:00 10:00 11:00

I want to fetch data from DB "start_time" and "end_time", is there any way to display all time per hour in Laravel?

For example:
start_time = 8:00
end_time = 11:00

Sample output:

8:00 9:00 10:00 11:00

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撩发小公举 2025-01-18 08:37:30

您真的需要在数据库中搜索吗?

也许可以在 php 中使用 while 来做到这一点。

将第一个 start_time 设为 8(就像它不是时间一样),

而 8 < 11点(结束时间)
{ 更新数组以保存值: myArray[i]=myHour 。 “:00”}

Do you really need to search in database ?

Maybe do this with while in php.

Take the first start_time as 8 (just do like it was not a time)

while 8 < at 11(endtime)
{ update a array to save value : myArray[i]=myHour . ":00"}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文