PHP:如何转换时间
如何用php转换时间?
原来的格式是00:02:34 min
。
我需要得到类似 154
的回声。谢谢。
How to convert time with php?
the original format was like 00:02:34 min
.
I need to get a echo like 154
. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:(
编辑:添加
date_default_timezone_set
)Try this:
(edit:
date_default_timezone_set
added)嘿尤利奇卡,
我建议你检查 php 的
date
和手册中的time
函数。从那里您还可以了解字符串到时间函数,例如strtotime()
和mktime
;日期和时间允许您指定输出的格式和时间戳。格式代码的参考列在我上面给出的手动链接中。如果您没有时间戳,可以使用
strtotime()
创建一个。Hey yuli chika,
I'll suggest you check out php's
date
andtime
functions in the manual. From there you can also learn about string to time functions like, well,strtotime()
andmktime
;Date and time allow you to specify a format and a timestamp for output. The reference for the format codes are listed in the manual links I gave above. If you don't have a timestamp, you can use
strtotime()
to create one.