如何将“HH:MM:SS”转换为“HH:MM:SS”用PHP将字符串转换为秒?
是否有一种使用 PHP 5.3 将“HH:MM:SS”转换为秒的本机方法,而不是对冒号进行分割并将每个部分的相关数字相乘来计算秒?
例如,在 Python 中你可以这样做:
string time = "00:01:05";
double seconds = TimeSpan.Parse(time).TotalSeconds;
Is there a native way of doing "HH:MM:SS" to seconds
with PHP 5.3 rather than doing a split on the colon's and multipling out each section the relevant number to calculate the seconds?
For example in Python you can do :
string time = "00:01:05";
double seconds = TimeSpan.Parse(time).TotalSeconds;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
快速方法:
The quick way:
这应该可以解决问题:
This should do the trick:
我认为最简单的方法是使用
strtotime()
函数:演示
函数
date_parse()
也可用于解析日期和时间:
demo
I think the easiest method would be to use
strtotime()
function:demo
Function
date_parse()
can also be used for parsing date and time:demo
该功能还支持不带小时或分钟的输入
This function also supports input without hour or minute