diff($dt-6ren">
gpt4 book ai didi

php - PHP 中秒到分钟的转换

转载 作者:太空宇宙 更新时间:2023-11-04 11:03:53 27 4
gpt4 key购买 nike

我正在使用下面的代码将秒转换为 minutes:seconds

$dtF = new DateTime("0");
$dtT = new DateTime("500");
$dtF->diff($dtT)->format('%i:%s');

它在 Windows 中运行良好,但在 Linux 中运行不佳。我不知道原因。请专家帮助我解决这个问题。

我收到以下错误:

Fatal error: Uncaught exception 'Exception' with message 'DateTime::__construct(): Failed to parse time string

最佳答案

0500 是什么? PHP不知道。指定您的时间单位:

$dtF = new DateTime("0 seconds"); // aka "now"
$dtT = new DateTime("500 seconds");
echo $dtF->diff($dtT)->format('%i:%s');
// 8:20

Demo

关于php - PHP 中秒到分钟的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26026364/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com