php - 将小时:分钟转换为今天的相应纪元时间

发布于 2024-12-02 08:05:02 字数 204 浏览 2 评论 0原文

我有两个值,我希望将其转换为今天将发生的纪元等效值。

目前我有; 小时 - 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白云不回头 2024-12-09 08:05:02

由于 mktime 将值默认为当前日期/时间,我们只能覆盖您需要的值:

$hours = 16;
$minutes = 30;

echo mktime($hours, $minutes);

这将始终输出运行当天的本地时区 16:30 的时间戳...

Since mktime defaults the values to the current date/time, we can only override the values you need:

$hours = 16;
$minutes = 30;

echo mktime($hours, $minutes);

That will always output the timestamp of 16:30 in your local timezone on the day it was ran...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文