distance_of_time_in_words 疯了!

发布于 2024-09-12 08:12:05 字数 407 浏览 5 评论 0原文

distance_of_time_in_words(strtotime(2010-08-07), strtotime(2010-08-01))

返回“6 分钟”

$a = '2010-08-02 00:39:29'
$b = '2010-08-01'
distance_of_time_in_words($a, $b)

返回“不到一分钟

$a = '2010-08-02 00:39:29'
$b = '2010-08-01 20:08:00'
distance_of_time_in_words($a, $b)

” 返回“不到一分钟”

我想知道我在转换中是否出错了。它接受时间戳或日期吗? 谢谢

distance_of_time_in_words(strtotime(2010-08-07), strtotime(2010-08-01))

returns '6 minutes'

$a = '2010-08-02 00:39:29'
$b = '2010-08-01'
distance_of_time_in_words($a, $b)

returns 'less than a minute'

$a = '2010-08-02 00:39:29'
$b = '2010-08-01 20:08:00'
distance_of_time_in_words($a, $b)

returns 'less than a minute'

I wonder if I'm going wrong in the conversion.. Does it accept a timestamp or date?
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

み青杉依旧 2024-09-19 08:12:05

检查它的源代码似乎它需要时间戳(它在函数开始时进行一些计算)。

Checking it's source code it seems it needs timestamps (it does some calculations at the beginning of the function).

娇纵 2024-09-19 08:12:05
// call
distance_of_time_in_words(getUnixTimestamp(), getUnixTimestamp($bill->created_at));

// utility method
public function getUnixTimestamp($datetime = null)
{
  return date("U", (($datetime) ? strtotime($datetime) : time()));
}

希望这对其他人有帮助!

// call
distance_of_time_in_words(getUnixTimestamp(), getUnixTimestamp($bill->created_at));

// utility method
public function getUnixTimestamp($datetime = null)
{
  return date("U", (($datetime) ? strtotime($datetime) : time()));
}

Hope this will help others!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文