如何在PHP中将小时:分钟转换为秒?我想转换这个值示例:6:30(6小时30分钟)。
echo gmdate("H:i", 11685); // this is to convert seconds to hours:minutes
我需要反过来..
答案 0 :(得分:2)
将它拆开并进行数学运算,并不难。
list($hours, $minutes) = explode(':', $time, 2);
$seconds = $minutes * 60 + $hours * 3600;