有没有人知道有助于处理日期(意味着工作日)的php类或库?例如,我可以用它来说“给我下周二9:00的时间戳”或“这是下周二和下周四之间的时间戳”。
我只是拥有应用程序的一部分,我需要确保我不会在某些时间安排事情。
答案 0 :(得分:4)
有内置的DateTime
类,但你甚至不需要它:
//this gives results in the default timezone
//timestamp for next Tuesday at 9:00
strtotime("next tuesday 09:00");
//is this timestamp between next Tuesday and next Thursday
$ts >= strtotime("next tuesday") && $ts < strtotime("next friday")
答案 1 :(得分:3)
你能用strtotime()吗?
答案 2 :(得分:2)
如果必须使用班级Zend_Date则相当强大。它配备了Zend框架,但据我所知,它是独立的。没有义务实现MVC和所有其他Zend的东西。
答案 3 :(得分:0)
部分评论in the PHP manual解释了如何使用date
。