本文介绍了将Unix时间戳转换为Carbon对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在表中有unix时间戳,要使用Carbon向用户显示.我该如何实现?
I have unix timestamp in table, wants to show to user using Carbon. How can I achieve ?
例如
1487663764.99256
到
2017-02-24 23:23:14.654621
推荐答案
您是否检查了碳文件?像这样吗?我想这就是您要寻找的东西:
Did you check the carbon docs? Something like this? I think this is what youre looking for:
Carbon::createFromTimestamp(-1)->toDateTimeString();
结帐 http://carbon.nesbot.com/docs/#api-instantiation
这篇关于将Unix时间戳转换为Carbon对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!