如何在 Yahoo PIpes 中格式化时间以获取过去的分钟数..?

发布于 2024-09-02 23:09:28 字数 269 浏览 7 评论 0原文

我使用 yahoo 管道从 twitter api 获取推文。 现在,twitter 以这种格式给出时间:“Thu May 27 19:56:21 +0000 2010”。 我想知道自“Thu May 27 19:56:21 +0000 2010”以来已经过去了多少分钟。 如何,我可以格式化“Thu May 27 19:56:21 +0000 2010”以获得过去的分钟数吗?换句话说,我想减去“现在”和“Thu May 27 19:56:21 +0000 2010”。然后将结果转换为分钟。

请帮我...

I fetched the tweets from twitter api using yahoo pipes.
Now, twitter gives the time in this format "Thu May 27 19:56:21 +0000 2010".
I want to know how many minutes have past since "Thu May 27 19:56:21 +0000 2010".
How, can i format "Thu May 27 19:56:21 +0000 2010" in order to get the minutes past?? in other words, i want to subract "now" and "Thu May 27 19:56:21 +0000 2010". Then convert the result into minutes.

Please help me...

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

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

发布评论

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

评论(1

木格 2024-09-09 23:09:28

<代码>
$tweet_time = strtotime("5 月 27 日星期四 19:56:21 +0000 2010");
$分钟_自 = (时间() - $tweet_time) * 60;


$tweet_time = strtotime("Thu May 27 19:56:21 +0000 2010");
$minutes_since = (time() - $tweet_time) * 60;

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