php - 将小时:分钟转换为今天的相应纪元时间
我有两个值,我希望将其转换为今天将发生的纪元等效值。
目前我有; 小时 - 16 分钟 - 30
所以这里我有半 4 或 16:30 今天将是纪元 1314804607
问题是我如何每天进行此转换以获得今天 16:30 的纪元值
感谢您提前的帮助,
到了那个时候,我累了:P 可能真的很容易!
安迪
I have 2 values that i wish to convert to the epoch equivilent that will happen today.
Currently i have;
hour - 16
minute - 30
so here i've got half 4 or 16:30 which today would be 1314804607 in epoch
The question is how do I do this conversion each day to get the epoch value of today's 16:30
thanks for your help in advance,
It's that time and im tired :P probably really easy!
Andy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于
mktime
将值默认为当前日期/时间,我们只能覆盖您需要的值:这将始终输出运行当天的本地时区
16:30
的时间戳...Since
mktime
defaults the values to the current date/time, we can only override the values you need:That will always output the timestamp of
16:30
in your local timezone on the day it was ran...