在 PHP 中将数字(作为字符串)格式化为时间
在这里问这个问题感觉有点傻,但我不知道要搜索什么才能给我这个问题的答案,所以问题是:
我有一个数字,例如:
0800
理想情况下,我想格式化这个(使用 PHP)到上午 8:00 - 这可能吗?
希望你能帮忙,
汤姆
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
有关更多信息(包括有关占位符的信息),请参阅 http://php.net/manual/ en/datetime.createfromformat.php。
For more information (including info about the placeholders) see http://php.net/manual/en/datetime.createfromformat.php.
您可以使用
date()
函数和下面的代码:更多信息可以在此处找到:http://php.net/manual/en/function.date.php
还有一个很棒的例子:http://codepad.org/uUuoZK1A
What you can use is
date()
function and the code below:More info can be found here: http://php.net/manual/en/function.date.php
And also one example would be awesome: http://codepad.org/uUuoZK1A
这会起作用
This would work
希望这有帮助:)
Hope this helps :)