php mysql 经过的时间计算

发布于 2024-11-14 02:12:13 字数 298 浏览 5 评论 0原文

我有一个应用程序 [iphone],有时 [使用 json] 发送到服务器,所以时间看起来像 hh:mm 24 小时格式, 时间以 varchar 形式保存在数据库中,

我需要计算经过的时间 = endTime - startTime

但我的问题是我在数据库中的时间为 varchar!,没有时间戳,

  • 那么如何计算经过的时间,改变我的数据库中字段的 varchar 类型? 我可以将这个 hh:mm 转换为 int 吗?进行操作?,然后再次将其显示为 hh:mm,可能保存在其他表中?

多谢!

I have an app [iphone], that sends to a server some times [using json], so the times look like hh:mm 24 hour format,
the time gets saved in the db as varchar,

I need to calculate the elapsed time = endTime - startTime

but my problem is that I have the time in the db as varchar!, no time stamp,

  • so how to calculate the elapsed time, with out changing the varchar type of field in my db?,
    can I convert this hh:mm to an int? for the operation?, and then showing it again as a hh:mm, possibly to save in other table?

thanks a lot!

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

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

发布评论

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

评论(3

情栀口红 2024-11-21 02:12:13

那么如何在不更改数据库中字段的 varchar 类型的情况下计算经过的时间?

您可以投射它,但最好将其作为日期时间开始。

 cast(endtime as datetime) - cast(starttime as datetime) -- yields an interval

so how to calculate the elapsed time, with out changing the varchar type of field in my db?

You can cast it, but you'd be better off having that as a datetime to start with.

 cast(endtime as datetime) - cast(starttime as datetime) -- yields an interval
夜司空 2024-11-21 02:12:13

简单的:

$start_time = '11:10';
$end_time = '18:55';

$start_time = explode(':', $start_time);
$end_time = explode(':', $end_time);

$elapsed_time = $end_time[0]*60+$end_time[1]-$start_time[0]*60-$start_time[1];
// in minutes.
$elapsed_hours = floor($elapsed_time/60);
$elapsed_minutes = $elapsed_time-$elapsed_hours*60;

print $elapsed_hours.':'.$elapsed_minutes;
// 7:45

Easy:

$start_time = '11:10';
$end_time = '18:55';

$start_time = explode(':', $start_time);
$end_time = explode(':', $end_time);

$elapsed_time = $end_time[0]*60+$end_time[1]-$start_time[0]*60-$start_time[1];
// in minutes.
$elapsed_hours = floor($elapsed_time/60);
$elapsed_minutes = $elapsed_time-$elapsed_hours*60;

print $elapsed_hours.':'.$elapsed_minutes;
// 7:45
半山落雨半山空 2024-11-21 02:12:13

在 PHP 中:

$json_time = '13:10';
$json_format = 'H:i';

$date = DateTime::createFromFormat($json_format, $json_time);

$mysql_format = 'Y-m-d H:i:s';
echo "Format: $mysql_format; " . $date->format($mysql_format) . "\n";

echo $date->getTimestamp();

产量:

格式:Ymd H:i:s; 2011-06-08 13:10:00

1307495400

In PHP:

$json_time = '13:10';
$json_format = 'H:i';

$date = DateTime::createFromFormat($json_format, $json_time);

$mysql_format = 'Y-m-d H:i:s';
echo "Format: $mysql_format; " . $date->format($mysql_format) . "\n";

echo $date->getTimestamp();

Yeilds:

Format: Y-m-d H:i:s; 2011-06-08 13:10:00

1307495400

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文