如何在 Yahoo PIpes 中格式化时间以获取过去的分钟数..?
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
<代码>
$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;