如何反转 PHP 中的 mktime() 函数?
我正在使用以下方法将时间转换为整数
mktime(hour,min,second,month,day,year)
我如何反转它以获得所需的日期?目前我不需要分钟或秒,所以我使用零“0”。任何建议将不胜感激。
谢谢。
I am using following to convert time to integer
mktime(hour,minute,second,month,day,year)
How would I reverse this to get desired Date? Currently I do not need Minutes or Seconds so I am using Zeroes '0' for them. Any suggestions would be appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用函数 date()
Use the function date()
如果您的数据来自 HTML 表单,您可以使用它代替 mktime():
然后只需使用:
显示日期。
If your data came from an HTML form, you can use this instead of mktime():
Then just use:
to display the date.
您可能正在寻找
getdate()
,它返回包含秒、分钟、小时等的关联数组。如果失败,您可能需要查看
idate()
返回与date()
相同的值,但作为整数而不是字符串,如果您不这样做,可能会表现得更好实际上并不想要字符串。You might be looking for
getdate()
, it returns associative array with seconds, minutes, hours, etc.Failing that you might want to look at
idate()
which returns the same values asdate()
but as an integer instead of string which might perform better in case you don’t actually want strings.