判断我们是否在工作日的特定时间范围内的最快方法是什么?
我在我的项目中使用 PHP/MySQL,并且有一个保存时间值和星期几的表。本周剩余时间的行数为 SUNDAY_OPEN SUNDAY_CLOSE 等。这些保留时间如 9:00
和 17:00
。
我想做的就是在某个访问时间上,了解 PHP 中的 NOW() 或 time() 是否正好落在该时间范围内。
I am using PHP/MySQLin my project, and I have a table that holds time values, and days of week. The rows are SUNDAY_OPEN SUNDAY_CLOSE etc. for the rest of the week. These hold times like 9:00
and 17:00
.
All I want to do is on a certain time of access, to know whether the NOW() or time() in PHP fall exactly on that time range.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么样:
How about something like: