timer

ryevplcw  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(393)

我需要在codeigniter,mysql和ajax定时器作为时间在天来自每个产品的数据库。

<td id="timer"><?=$data['auction_end_time']?></td>

数据来自数据库在天,我想显示计时器。这是我的网站在这里你可以看到的链接。
请引导我。。。!

e5nszbig

e5nszbig1#

假设我们有以下php函数(这可以改进)

function auction_end_time($future_date) {

    $now = new DateTime();
    $future_date = new DateTime($future_date);

    if($future_date <= $now)
        return 'This offer has expired!';

    $interval = $future_date->diff($now);

   return $interval->format("%a days %h:%i:%s");
}

在你的html代码里

<td id="timer"><?=auction_end_time($data['auction_end_time'])?></td>

这个解决方案是静态的。对于动态倒计时,可以使用jquery插件,我发现了这个jquery.countdown插件
请参见jsfiddle.net上的示例

相关问题