指定持续时间的php日期列表
是否有任何 php 类或函数可以为我们提供特定持续时间的所有天数?例如,如果我想要一个从25/03/2010(2010年3月25日)到15/05/2010(2010年5月15日)的日期列表,它会给我:
25/03/2010 26/03/2010 26/03/2010 .... .... .... 14/05/2010 15/05/2010
非常感谢您的帮助!
is there any php classes or functions, which will gives us all the days from specific duration? for example, if i want a list of dates from 25/03/2010 (25th march 2010) to 15/05/2010 (15th May 2010), it will give me:
25/03/2010
26/03/2010
26/03/2010
....
....
....
14/05/2010
15/05/2010
thanks a lot for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 php5.3 中,使用新的
DatePeriod
< /a> 对象:It's easy in php5.3 with the new
DatePeriod
objects:应该做。
Should do it.