如何编辑内爆以便它将值与两个字符串连接起来?
在下面的函数中可能有一个可能的输出
1 day and 2 hours and 34 minutes
我的问题是如何编辑内爆以便它输出
1 day, 2 houts and 34 minutes
这是我的函数
function time_difference($endtime){
$hours = (int)date("G",$endtime);
$mins = (int)date("i",$endtime);
// join the values
$diff = implode(' and ', $diff);
if (($hours == 0 ) && ($mins == 0)) {
$diff = "few seconds ago";
}
return $diff;
}
In the function below a possible output maybe
1 day and 2 hours and 34 minutes
My question is how do I edit the implode so it will output
1 day, 2 houts and 34 minutes
This is my function
function time_difference($endtime){
$hours = (int)date("G",$endtime);
$mins = (int)date("i",$endtime);
// join the values
$diff = implode(' and ', $diff);
if (($hours == 0 ) && ($mins == 0)) {
$diff = "few seconds ago";
}
return $diff;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像这样的东西吗?
Something like this?
我会做类似的事情:
I would do something like:
有很多地方可以使用 x-time-ago 函数。 此处 在 PHP 中是两个。这是 Javascript 中的一个。
There are a lot of places for x-time-ago functions. here are two in PHP. Here's one in Javascript.