编程语言
首页 > 编程语言> > php-Laravel Carbon秒用于forHumans

php-Laravel Carbon秒用于forHumans

作者:互联网

我有一个表格,其中包含秒数列,在其中插入在线时间(以秒为单位),

Carbon::parse($seconds)->forHumans();

不允许我这样做,有没有办法解析秒数并将其传递给人类阅读?像1小时或2周?

解决方法:

这应该返回您想要的结果:

Carbon::now()->subSeconds($seconds)->diffForHumans();

标签:laravel,laravel-5,php
来源: https://codeday.me/bug/20191119/2036303.html