根据数据库字段和当前时间计算前小时/分钟

发布于 2024-12-10 15:55:44 字数 446 浏览 0 评论 0原文

代码给我带来麻烦:

    foreach($result as $row)
    { 

    echo "<div class='listing'>";
        print $row['uUName'] . '</strong><br />' .
        '<strong>' . $row['listTitle'] . '</strong><br />' .
        $arr = explode(':', $row['LISTDIFF']);
        echo "$arr[0] minutes, $arr[1] seconds";
    echo "</div>";
    }

输出:数组分钟,秒。为什么数组是空的?

Code Giving me Trouble:

    foreach($result as $row)
    { 

    echo "<div class='listing'>";
        print $row['uUName'] . '</strong><br />' .
        '<strong>' . $row['listTitle'] . '</strong><br />' .
        $arr = explode(':', $row['LISTDIFF']);
        echo "$arr[0] minutes, $arr[1] seconds";
    echo "</div>";
    }

This outputs: Array minutes, seconds . Why is the array empty?

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

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

发布评论

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

评论(1

小苏打饼 2024-12-17 15:55:44

在 MySQL 中进行日期计算

SELECT TIMEDIFF(listDT, now())

hh:mm:ss.ssss 格式的字符串形式返回差值,然后您可以在 PHP 中对其进行处理以添加“分钟”和“秒”文本。


$arr = explode(':', $result['LISTDIFF']);
echo "$arr[0] minutes, $arr[1] seconds";

Do the date calculations in MySQL:

SELECT TIMEDIFF(listDT, now())

which returns the difference as a string in the format hh:mm:ss.ssss, which you can then massage in PHP to add the 'minutes' and 'seconds' text.


$arr = explode(':', $result['LISTDIFF']);
echo "$arr[0] minutes, $arr[1] seconds";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文