我想从数据库“start_time”获取数据和“end_time”,有没有办法在 Laravel 中显示每小时的所有时间?
我想从数据库“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您真的需要在数据库中搜索吗?
也许可以在 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"}